Skip to content

Commit

Permalink
ducktape: Increase kgo-repeater status timeout
Browse files Browse the repository at this point in the history
kgo-repeaters start to get pretty loaded at higher partition densities
so the status query can take a bit longer.
  • Loading branch information
StephanDollberg committed Jan 7, 2025
1 parent 3a1aa61 commit 417bb75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/rptest/services/kgo_repeater_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ def group_ready():

def _get_status_reports(self):
for node in self.nodes:
r = requests.get(self._remote_url(node, "status"), timeout=10)
r = requests.get(self._remote_url(node, "status"), timeout=30)
r.raise_for_status()
node_status = r.json()
for worker_status in node_status:
Expand Down

0 comments on commit 417bb75

Please sign in to comment.