diff options
author | EuAndreh <eu@euandre.org> | 2023-10-19 17:28:27 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2023-10-19 17:28:27 -0300 |
commit | bf96534cd4521287b96a43871ecd758be830a68c (patch) | |
tree | d80ef68c713d0e8b36f3dd1f667e897d7707fa23 | |
parent | re 's/servers/server/g' (diff) | |
download | toph-bf96534cd4521287b96a43871ecd758be830a68c.tar.gz toph-bf96534cd4521287b96a43871ecd758be830a68c.tar.xz |
cronjob.sh: Increase timeout to 4 hours
Notes
See CI logs with:
git notes --ref=refs/notes/ci-logs show bf96534cd4521287b96a43871ecd758be830a68c
git notes --ref=refs/notes/ci-data show bf96534cd4521287b96a43871ecd758be830a68c
Exit status: 0
Duration: 23
-rwxr-xr-x | src/infrastructure/scripts/cronjob.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/infrastructure/scripts/cronjob.sh b/src/infrastructure/scripts/cronjob.sh index 4cd456e..8abe510 100755 --- a/src/infrastructure/scripts/cronjob.sh +++ b/src/infrastructure/scripts/cronjob.sh @@ -127,7 +127,7 @@ duration() { CMD="$*" HOSTNAME="$(hostname)" FROM="cronjob@$HOSTNAME" -TIMEOUT='10800' # three hours +TIMEOUT='14400' # four hours STATUS_F="$(mkstemp)" OUT="$(mkstemp)" |