Skip to content

Commit

Permalink
Propagate new timeout properly
Browse files Browse the repository at this point in the history
  • Loading branch information
Avogar committed May 13, 2024
1 parent 927ba76 commit a323dd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration/helpers/test_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ def exec_query_with_retry(
exception = None
for cnt in range(retry_count):
try:
res = instance.query(query, timeout=30, settings=settings)
res = instance.query(query, timeout=timeout, settings=settings)
if not silent:
logging.debug(f"Result of {query} on {cnt} try is {res}")
break
Expand Down

0 comments on commit a323dd1

Please sign in to comment.