diff options
author | Christopher Baines <mail@cbaines.net> | 2021-02-14 08:38:14 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2021-02-14 08:38:14 +0000 |
commit | ac6a85af9770fa2e2ac33ac20fbdf91103b32f21 (patch) | |
tree | dc2c46b29bc223d255a5dd5140c7c76556d8ba36 | |
parent | 7e1b8727b4755081b3063ec75dcfdf8488dea8eb (diff) | |
download | build-coordinator-ac6a85af9770fa2e2ac33ac20fbdf91103b32f21.tar build-coordinator-ac6a85af9770fa2e2ac33ac20fbdf91103b32f21.tar.gz |
Speed up the explicit WAL checkpoints
To try and curtail the WAL growth.
-rw-r--r-- | guix-build-coordinator/datastore/sqlite.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix-build-coordinator/datastore/sqlite.scm b/guix-build-coordinator/datastore/sqlite.scm index 72b91ae..887bf2e 100644 --- a/guix-build-coordinator/datastore/sqlite.scm +++ b/guix-build-coordinator/datastore/sqlite.scm @@ -188,7 +188,7 @@ (spawn-fiber (lambda () (while #t - (sleep (* 60 15)) ; 15 minutes + (sleep (* 60 2)) ; 2 minutes (with-exception-handler (lambda (exn) (simple-format (current-error-port) |