Skip to content

Commit

Permalink
test fixing a timeout in test (#193)
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielePalaia authored May 16, 2024
1 parent 58c4ef3 commit 65b7a22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ async def task_to_delete_connection(connection_name: str) -> None:
for connection in connections:
if connection["client_properties"]["connection_name"] == connection_name:
delete_connection(connection["name"])
await wait_for(lambda: get_connection(connection["name"]) is False, 2)
await wait_for(lambda: get_connection(connection["name"]) is False, 5)


async def task_to_delete_stream_producer(producer: Producer, stream: str) -> None:
Expand Down

0 comments on commit 65b7a22

Please sign in to comment.