Skip to content

Commit 2393825

Browse files
authored
Increase MODIFY_WAIT_AFTER_SECONDS to 90 (#101)
It looks like we have more than one flaky test. So ideally we want to increase the root `MODIFY_WAIT_AFTER_SECONDS` to 90 seconds. Signed-off-by: Amine Hilaly <[email protected]> By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
1 parent a2ce3e1 commit 2393825

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: test/e2e/tests/test_table.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
RESOURCE_PLURAL = "tables"
3232

3333
DELETE_WAIT_AFTER_SECONDS = 15
34-
MODIFY_WAIT_AFTER_SECONDS = 30
34+
MODIFY_WAIT_AFTER_SECONDS = 90
3535

3636
def new_gsi_dict(index_name: str, hash_key: str, read_write_pt: int):
3737
return {
@@ -348,7 +348,7 @@ def test_enable_stream_specification(self, table_lsi):
348348
table.wait_until(
349349
table_name,
350350
table.stream_specification_matches(False),
351-
timeout_seconds=MODIFY_WAIT_AFTER_SECONDS*3,
351+
timeout_seconds=MODIFY_WAIT_AFTER_SECONDS,
352352
interval_seconds=3,
353353
)
354354

0 commit comments

Comments
 (0)