From: Scott Gasch Date: Wed, 9 Feb 2022 03:55:34 +0000 (-0800) Subject: Change the weights in the default executor's remote worker pool. X-Git-Url: https://wannabe.guru.org/gitweb/?a=commitdiff_plain;h=b63d4b5f98d9eec29e923b62d4f63c9b63f13927;p=python_utils.git Change the weights in the default executor's remote worker pool. --- 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, ), )