Skip to content

Commit

Permalink
Fix one more file
Browse files Browse the repository at this point in the history
  • Loading branch information
a-masterov committed Jul 9, 2024
1 parent 9ea7171 commit 27d4244
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test_runner/regress/test_wal_acceptor_async.py
Original file line number Diff line number Diff line change
Expand Up @@ -395,8 +395,9 @@ async def run_concurrent_computes(
TIMEOUT_SECONDS = computes[0].MAX_QUERY_GAP_SECONDS + 3
initial_queries_by_0 = len(computes[0].successful_queries)
log.info(
f"Waiting for another query by computes[0], "
f"it already had {initial_queries_by_0}, timeout is {TIMEOUT_SECONDS}s"
"Waiting for another query by computes[0], "
"it already had %s, timeout is %ss",
initial_queries_by_0, TIMEOUT_SECONDS
)
for _ in range(10 * TIMEOUT_SECONDS):
current_queries_by_0 = len(computes[0].successful_queries) - initial_queries_by_0
Expand Down

0 comments on commit 27d4244

Please sign in to comment.