Skip to content

Commit

Permalink
ansible-test-splitter: reduce the targets_per_slot to 10 (#1418)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
goneri authored Mar 25, 2022
1 parent 6dcaecd commit a903156
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion roles/ansible-test-splitter/files/list_changed_targets.py
Original file line number Diff line number Diff line change
Expand Up @@ -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])
Expand Down

0 comments on commit a903156

Please sign in to comment.