summary refs log tree commit diff
path: root/gnu/services
diff options
context:
space:
mode:
authorMaxim Cournoyer <maxim.cournoyer@gmail.com>2022-02-19 01:22:05 -0500
committerMaxim Cournoyer <maxim.cournoyer@gmail.com>2022-02-19 01:37:42 -0500
commit6e5d21942509ff29249f98ff0e0f3eabd7341144 (patch)
tree1e73394f06d2d3694c8bd32ece3302fba2a67e71 /gnu/services
parentb731d34ed796ad3ca1cfba6e08369ffd6dcb57bf (diff)
downloadguix-6e5d21942509ff29249f98ff0e0f3eabd7341144.tar.gz
services: dbus: Increase auth_timeout value to 5 minutes.
This is a follow-up to 488f1c589df; the problem had re-appeared on my machine.

* gnu/services/dbus.scm (dbus-configuration-directory): Increase
'auth_timeout' value from 60000 to 300000 ms (5 minutes).
Diffstat (limited to 'gnu/services')
-rw-r--r--gnu/services/dbus.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/services/dbus.scm b/gnu/services/dbus.scm
index d2daf60497..ef6b82c572 100644
--- a/gnu/services/dbus.scm
+++ b/gnu/services/dbus.scm
@@ -106,10 +106,10 @@ includes the @code{etc/dbus-1/system.d} directories of each package listed in
         (define (services->sxml services)
           ;; Return the SXML 'includedir' clauses for DIRS.
           `(busconfig
-             ;; Increase this timeout to 60 seconds to work around race-y
+             ;; Increase this timeout to 300 seconds to work around race-y
              ;; failures such as <https://issues.guix.gnu.org/52051> on slow
              ;; computers with slow I/O.
-            (limit (@ (name "auth_timeout")) "60000")
+            (limit (@ (name "auth_timeout")) "300000")
             (servicehelper "/run/setuid-programs/dbus-daemon-launch-helper")
 
             ;; First, the '.service' files of services subject to activation.