diff options
author | EuAndreh <eu@euandre.org> | 2023-05-05 07:32:55 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2023-05-05 07:32:55 -0300 |
commit | 080859d61124c862e5704c97925a7011ee227400 (patch) | |
tree | b96f9f51b6ee8d42013fce54851da80d53820f08 | |
parent | gc.sh: Add 1 month window to keep Guix versions (diff) | |
download | toph-080859d61124c862e5704c97925a7011ee227400.tar.gz toph-080859d61124c862e5704c97925a7011ee227400.tar.xz |
cronjob.sh: Increase timeout to 3 hours
Notes
See CI logs with:
git notes --ref=refs/notes/ci-logs show 080859d61124c862e5704c97925a7011ee227400
git notes --ref=refs/notes/ci-data show 080859d61124c862e5704c97925a7011ee227400
Exit status: 1
Duration: 782
-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 13b1548..4cd456e 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='7200' # two hours +TIMEOUT='10800' # three hours STATUS_F="$(mkstemp)" OUT="$(mkstemp)" |