From 727c3c0d26832815dc7766681d09bf7a022c5f67 Mon Sep 17 00:00:00 2001 From: Andrew Wong Date: Fri, 14 Jul 2023 17:21:28 -0700 Subject: [PATCH] ducktape: extend timeout in timequery_test The test sometimes fails to wait for retention to kick in within 1 minute in Kafka. Note that no Redpanda is involved, so this commit just bumps the timeout. Fixes #10140 (cherry picked from commit 32872496141782449dbde47c137112b367e2d583) --- tests/rptest/tests/timequery_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/rptest/tests/timequery_test.py b/tests/rptest/tests/timequery_test.py index 993052eddf72e..e1db542b43b34 100644 --- a/tests/rptest/tests/timequery_test.py +++ b/tests/rptest/tests/timequery_test.py @@ -233,7 +233,7 @@ def start_offset(): return next(rpk.describe_topic(topic.name)).start_offset wait_until(lambda: start_offset() > 0, - timeout_sec=60, + timeout_sec=120, backoff_sec=5, err_msg="Start offset did not advance")