diff options
Diffstat (limited to 'bin')
-rw-r--r-- | bin/cuirass.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/bin/cuirass.in b/bin/cuirass.in index 8f3fbf4..13de395 100644 --- a/bin/cuirass.in +++ b/bin/cuirass.in @@ -152,4 +152,10 @@ exec ${GUILE:-@GUILE@} --no-auto-compile -e main -s "$0" "$@" (primitive-exit (get-message exit-channel)))))) + ;; Most of our code is I/O so preemption doesn't matter much (it + ;; could help while we're doing SQL requests, for instance, but it + ;; doesn't actually help since these are non-resumable + ;; continuations.) Thus, reduce the tick rate. + #:hz 10 + #:drain? #t))))))) |