From b63d4b5f98d9eec29e923b62d4f63c9b63f13927 Mon Sep 17 00:00:00 2001 From: Scott Gasch Date: Tue, 8 Feb 2022 19:55:34 -0800 Subject: [PATCH] Change the weights in the default executor's remote worker pool. --- executors.py | 10 +++++----- 1 file 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, ), ) -- 2.45.2