From dc1a72263f081671c4c199b760a562938b04e1e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gon=C3=A9ri=20Le=20Bouder?= Date: Thu, 24 Mar 2022 13:57:27 -0400 Subject: [PATCH] ansible-test-splitter: reduce the targets_per_slot to 10 20 is a bit ambitious and leads to TIMED_OUT sometimes. See: https://ansible.softwarefactory-project.io/zuul/buildset/8cf435c60f854a7a86fe688bd6ac01f6 --- roles/ansible-test-splitter/files/list_changed_targets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/ansible-test-splitter/files/list_changed_targets.py b/roles/ansible-test-splitter/files/list_changed_targets.py index e45a0e368..4738f5e83 100644 --- a/roles/ansible-test-splitter/files/list_changed_targets.py +++ b/roles/ansible-test-splitter/files/list_changed_targets.py @@ -334,7 +334,7 @@ class ElGrandeSeparator: def __init__(self, collections, total_jobs=13, ansible_releases=[]): self.collections = collections self.total_jobs = total_jobs # aka slot - self.targets_per_slot = 20 + self.targets_per_slot = 10 self.releases = ansible_releases total_targets = sum([len(c._my_test_plan) for c in self.collections])