Skip to content

Commit

Permalink
Increase wait_for_inputs_delete timeout to 120 seconds
Browse files Browse the repository at this point in the history
  • Loading branch information
mimarcel committed Nov 6, 2023
1 parent ca01e31 commit a005c55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def cleanup_inputs(stub, input_ids, metadata):
def wait_for_inputs_delete(stub, input_ids, metadata):
remaining_input_ids = list(input_ids)
start = datetime.now()
timeout = 60
timeout = 120
while remaining_input_ids and (datetime.now() - start).total_seconds() < timeout:
for input_id in remaining_input_ids:
get_input_response = stub.GetInput(
Expand Down

0 comments on commit a005c55

Please sign in to comment.