Skip to content

Commit

Permalink
Merge pull request #136 from paulorochaoliveira/main
Browse files Browse the repository at this point in the history
Issue 131: Fixes Flaky test by increasing timeout to 1s
  • Loading branch information
aiven-sal authored Dec 4, 2024
2 parents 9c67ddf + 7a66661 commit 4f7e880
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -5096,7 +5096,7 @@ def helper():

thread = threading.Thread(target=helper)
thread.start()
thread.join(0.1)
thread.join(1)
try:
assert not thread.is_alive()
assert ok
Expand Down

0 comments on commit 4f7e880

Please sign in to comment.