summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorScott Gasch <[email protected]>2022-02-08 19:55:34 -0800
committerScott Gasch <[email protected]>2022-02-08 19:55:34 -0800
commitb63d4b5f98d9eec29e923b62d4f63c9b63f13927 (patch)
treed41c83e94e3502db249d3afac4a6e17f27eb3370
parentbf611fe56efcdce0dada32d292b1587057ab6dd0 (diff)
Change the weights in the default executor's remote worker pool.
-rw-r--r--executors.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/executors.py b/executors.py
index 2d80c3b..2ece15e 100644
--- a/executors.py
+++ b/executors.py
@@ -1191,7 +1191,7 @@ class DefaultExecutors(object):
RemoteWorkerRecord(
username='scott',
machine='cheetah.house',
- weight=30,
+ weight=24,
count=6,
),
)
@@ -1211,8 +1211,8 @@ class DefaultExecutors(object):
RemoteWorkerRecord(
username='scott',
machine='wannabe.house',
- weight=25,
- count=10,
+ weight=14,
+ count=8,
),
)
if self.ping('puma.cabin'):
@@ -1221,7 +1221,7 @@ class DefaultExecutors(object):
RemoteWorkerRecord(
username='scott',
machine='puma.cabin',
- weight=30,
+ weight=24,
count=6,
),
)
@@ -1231,7 +1231,7 @@ class DefaultExecutors(object):
RemoteWorkerRecord(
username='scott',
machine='backup.house',
- weight=8,
+ weight=9,
count=2,
),
)