cbaines pushed a commit to branch master
in repository guix.
commit 4b8acf715dd806f9034e7c7a073e6b49301985d3
Author: Christopher Baines <[email protected]>
AuthorDate: Fri Oct 23 14:58:19 2020 +0100
services: guix: Fix the guix-build-coordinator metrics namespace.
The underscore is now handled in the guile prometheus library.
* gnu/services/guix.scm (make-guix-build-coordinator-start-script): Remove
the
underscore from the end of the metrics namespace.
---
gnu/services/guix.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnu/services/guix.scm b/gnu/services/guix.scm
index 4afe027..87f0033 100644
--- a/gnu/services/guix.scm
+++ b/gnu/services/guix.scm
@@ -207,7 +207,7 @@
(current-filename))
(let* ((metrics-registry (make-metrics-registry
#:namespace
- "guixbuildcoordinator_"))
+ "guixbuildcoordinator"))
(datastore (database-uri->datastore
#$database-uri-string
#:metrics-registry metrics-registry))