Skip to content

Commit

Permalink
Increased timeout for CodeBuild
Browse files Browse the repository at this point in the history
  • Loading branch information
ckunki committed Mar 28, 2024
1 parent 569e490 commit 14c2212
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def _wait_for(seconds: int, interval: int) -> Iterable[int]:
for _ in range(int(seconds / interval)):
yield interval

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

0 comments on commit 14c2212

Please sign in to comment.