diff options
Diffstat (limited to 'executors.py')
| -rw-r--r-- | executors.py | 30 |
1 files changed, 25 insertions, 5 deletions
diff --git a/executors.py b/executors.py index c11bd54..92c5b34 100644 --- a/executors.py +++ b/executors.py @@ -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, ), ) |
