Move stuff around.
[python_utils.git] / executors.py
index c11bd546cc3b1b0afcefff8c3215aab2707db147..92c5b3464154259fe4753702ebbd98fc84db11c9 100644 (file)
@@ -1113,7 +1113,7 @@ class DefaultExecutors(object):
                         username = 'scott',
                         machine = 'cheetah.house',
                         weight = 14,
-                        count = 4,
+                        count = 6,
                     ),
                 )
             if self.ping('video.house'):
@@ -1126,12 +1126,12 @@ class DefaultExecutors(object):
                         count = 4,
                     ),
                 )
-            if self.ping('wannabe.house'):
-                logger.info('Found wannabe.house')
+            if self.ping('gorilla.house'):
+                logger.info('Found gorilla.house')
                 pool.append(
                     RemoteWorkerRecord(
                         username = 'scott',
-                        machine = 'wannabe.house',
+                        machine = 'gorilla.house',
                         weight = 2,
                         count = 4,
                     ),
@@ -1156,6 +1156,16 @@ class DefaultExecutors(object):
                         count = 2,
                     ),
                 )
+            if self.ping('hero.house'):
+                logger.info('Found hero.house')
+                pool.append(
+                    RemoteWorkerRecord(
+                        username = 'scott',
+                        machine = 'hero.house',
+                        weight = 30,
+                        count = 10,
+                    ),
+                )
             if self.ping('puma.cabin'):
                 logger.info('Found puma.cabin')
                 pool.append(
@@ -1163,7 +1173,17 @@ class DefaultExecutors(object):
                         username = 'scott',
                         machine = 'puma.cabin',
                         weight = 12,
-                        count = 4,
+                        count = 6,
+                    ),
+                )
+            if self.ping('puma.house'):
+                logger.info('Found puma.house')
+                pool.append(
+                    RemoteWorkerRecord(
+                        username = 'scott',
+                        machine = 'puma.house',
+                        weight = 12,
+                        count = 6,
                     ),
                 )