Skip to content

Commit d6fffbc

Browse files
authored
Increased timeout for CodeBuild (#266)
* Increased timeout for CodeBuild * [run-notebook-tests]
1 parent 569e490 commit d6fffbc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exasol/ds/sandbox/lib/aws_access/waiter/codebuild_waiter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def _wait_for(seconds: int, interval: int) -> Iterable[int]:
2020
for _ in range(int(seconds / interval)):
2121
yield interval
2222

23-
def wait(self, timeout_in_seconds: int = 60*60*2, interval_in_seconds: int = 30):
23+
def wait(self, timeout_in_seconds: int = 60*60*4, interval_in_seconds: int = 30):
2424
"""
2525
Waits until the build finishes or runs into the timeout given by parameter "timeout_in_minutes".
2626
If the build finishes with an error or ran into the timeout, it throws an exception;

0 commit comments

Comments
 (0)