~ruther/guix-local

1da1b42cace1bfd249f5360c308b0694dc50ce9a — Christopher Baines 1 year, 8 months ago f3a5744
services: guix-build-coordinator: Don't log with timestamps.

As the shepherd adds these to the logs.

* gnu/services/guix.scm (make-guix-build-coordinator-start-script): Pass
 #:timestamp-log-output? #f to make-build-coordinator.
(guix-build-coordinator-agent-shepherd-services): Add
--timestamp-log-output=false to the arguments.

Change-Id: I9073ee7b1cefa894d38fdf3831c59de693e087f6
1 files changed, 3 insertions(+), 1 deletions(-)

M gnu/services/guix.scm
M gnu/services/guix.scm => gnu/services/guix.scm +3 -1
@@ 291,7 291,8 @@
                (build-coordinator (make-build-coordinator
                                    #:database-uri-string #$database-uri-string
                                    #:hooks hooks-with-defaults
                                    #:allocation-strategy #$allocation-strategy)))
                                    #:allocation-strategy #$allocation-strategy
                                    #:timestamp-log-output? #f)))

           (run-coordinator-service
            build-coordinator


@@ 421,6 422,7 @@
             (fork+exec-command
              (list #$(file-append package "/bin/guix-build-coordinator-agent")
                    #$(string-append "--coordinator=" coordinator)
                    "--timestamp-log-output=false"
                    #$@(match authentication
                         (($ <guix-build-coordinator-agent-password-auth>
                             uuid password)