Skip to content

Commit 02db59a

Browse files
committed
600 s timeout
1 parent 73357d3 commit 02db59a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

e2e_batch/test_e2e_batch.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def tearDown(self):
4646
def test_batch_submission(self):
4747
"""Test all scenarios and submit as batch."""
4848
start_time = time.time()
49-
max_timeout = 1200 # seconds
49+
max_timeout = 600 # seconds
5050

5151
send_files(self.tests)
5252

e2e_batch/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def delete_file_from_s3(bucket, key):
7373
raise Exception(f"Unexpected error during file deletion: {e}")
7474

7575

76-
def wait_for_ack_file(ack_prefix, input_file_name, timeout=1200):
76+
def wait_for_ack_file(ack_prefix, input_file_name, timeout=600):
7777
"""Poll the ACK_BUCKET for an ack file that contains the input_file_name as a substring."""
7878

7979
filename_without_ext = input_file_name[:-4] if input_file_name.endswith(".csv") else input_file_name

0 commit comments

Comments
 (0)