Skip to content

Commit 463c47d

Browse files
committed
fix(retrieval): waiting flow would time out
Should wait forever for the other flow
1 parent b27be37 commit 463c47d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

backend/archiver/flows/retrieve_datasets_flow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ def find_oldest_dataset_flow(
193193
on_failure=[on_job_flow_failure],
194194
)
195195
async def wait_for_retrieval_flow(flow_run_id: uuid.UUID):
196-
flow_run: FlowRun = await wait_for_flow_run(flow_run_id, log_states=True)
196+
flow_run: FlowRun = await wait_for_flow_run(flow_run_id, log_states=True, timeout=None, poll_interval=60)
197197
flow_run.state.result()
198198

199199

0 commit comments

Comments
 (0)