Skip to content

Commit 01bfd1c

Browse files
committed
Uping timeout
1 parent 7ba565d commit 01bfd1c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/release.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ def processRelease(repo, payload):
3232

3333
with subprocess.Popen(' && '.join(commands), cwd=data['path'], executable='/bin/bash', shell=True) as process:
3434
try:
35-
process.communicate(timeout=120)
35+
process.communicate(timeout=300)
3636
except subprocess.TimeoutExpired:
37-
print('Process was killed by timeout: 120 seconds.')
37+
print('Process was killed by timeout: 300 seconds.')
3838
raise
3939
finally:
4040
if process.poll() is None:

0 commit comments

Comments
 (0)