mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
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
This commit is contained in:
parent
f3a5744bc4
commit
1da1b42cac
1 changed files with 3 additions and 1 deletions
|
@ -291,7 +291,8 @@ (define* (make-guix-build-coordinator-start-script database-uri-string
|
||||||
(build-coordinator (make-build-coordinator
|
(build-coordinator (make-build-coordinator
|
||||||
#:database-uri-string #$database-uri-string
|
#:database-uri-string #$database-uri-string
|
||||||
#:hooks hooks-with-defaults
|
#:hooks hooks-with-defaults
|
||||||
#:allocation-strategy #$allocation-strategy)))
|
#:allocation-strategy #$allocation-strategy
|
||||||
|
#:timestamp-log-output? #f)))
|
||||||
|
|
||||||
(run-coordinator-service
|
(run-coordinator-service
|
||||||
build-coordinator
|
build-coordinator
|
||||||
|
@ -421,6 +422,7 @@ (define (guix-build-coordinator-agent-shepherd-services config)
|
||||||
(fork+exec-command
|
(fork+exec-command
|
||||||
(list #$(file-append package "/bin/guix-build-coordinator-agent")
|
(list #$(file-append package "/bin/guix-build-coordinator-agent")
|
||||||
#$(string-append "--coordinator=" coordinator)
|
#$(string-append "--coordinator=" coordinator)
|
||||||
|
"--timestamp-log-output=false"
|
||||||
#$@(match authentication
|
#$@(match authentication
|
||||||
(($ <guix-build-coordinator-agent-password-auth>
|
(($ <guix-build-coordinator-agent-password-auth>
|
||||||
uuid password)
|
uuid password)
|
||||||
|
|
Loading…
Reference in a new issue