Skip to content
This repository was archived by the owner on Mar 9, 2026. It is now read-only.

Commit 2f3e30a

Browse files
committed
experimenting with time limits for threading.Barrier
1 parent 8880472 commit 2f3e30a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/system.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -732,7 +732,7 @@ def callback(message):
732732

733733
# The messages that were not processed should have been NACK-ed and we should
734734
# receive them again quite soon.
735-
all_done = threading.Barrier(7 + 1, timeout=5) # +1 because of the main thread
735+
all_done = threading.Barrier(7 + 1, timeout=15) # +1 because of the main thread
736736
remaining = []
737737

738738
def callback2(message):

0 commit comments

Comments
 (0)