diff options
| author | Arun Isaac <arunisaac@systemreboot.net> | 2025-09-25 10:42:12 +0100 |
|---|---|---|
| committer | Arun Isaac <arunisaac@systemreboot.net> | 2025-09-25 11:37:06 +0100 |
| commit | 7b8ef76b0f2dd7e9452160d8cb03f1d58635fd14 (patch) | |
| tree | 1d9e72eb0dcd5b71e7ae59efe4b47ab33927c403 /gnu/services/web.scm | |
| parent | 2c7e5574a9229ae752f8f1aa4b103cf58a4d7302 (diff) | |
services: mumi: Raise maximum duration of indexing job.
Indexing all Debbugs issues from scratch can take more than an hour.
* gnu/services/web.scm (mumi-shepherd-services): Raise #:max-duration to 2
hours.
Diffstat (limited to 'gnu/services/web.scm')
| -rw-r--r-- | gnu/services/web.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/services/web.scm b/gnu/services/web.scm index 255ae5a3cf0..3989607646e 100644 --- a/gnu/services/web.scm +++ b/gnu/services/web.scm @@ -2071,7 +2071,7 @@ WSGIPassAuthorization On (calendar-event #:minutes '#$(iota 12 0 5)) (command (list #$(mumi-rsync-and-index config))) #:log-file #$%mumi-rsync-and-index-log - #:max-duration (* 60 60) + #:max-duration (* 2 60 60) #:wait-for-termination? #t)) (stop #~(make-timer-destructor)) (actions (list shepherd-trigger-action)) |
