From 27d42446078eb0feb4afaaa54e1b83113e7b1674 Mon Sep 17 00:00:00 2001 From: Alexey Masterov Date: Tue, 9 Jul 2024 19:04:42 +0200 Subject: [PATCH] Fix one more file --- test_runner/regress/test_wal_acceptor_async.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test_runner/regress/test_wal_acceptor_async.py b/test_runner/regress/test_wal_acceptor_async.py index b4c3473be87b..d9ed84d49359 100644 --- a/test_runner/regress/test_wal_acceptor_async.py +++ b/test_runner/regress/test_wal_acceptor_async.py @@ -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