Skip to content

Commit

Permalink
ducktape: extend timeout in timequery_test
Browse files Browse the repository at this point in the history
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 redpanda-data#10140

(cherry picked from commit 3287249)
  • Loading branch information
andrwng authored and vbotbuildovich committed Sep 1, 2023
1 parent 56faa8a commit ad49e23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/rptest/tests/timequery_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,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")

Expand Down

0 comments on commit ad49e23

Please sign in to comment.