aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Baines <mail@cbaines.net>2025-01-15 00:38:26 +0000
committerChristopher Baines <mail@cbaines.net>2025-01-15 00:38:26 +0000
commitb0da202e625fc1c51beab67824ed948e6374a12c (patch)
treef630f161ddf22b74165caba194f2c426ca80e2d1
parent39d32837beb9eda5a1a301691d8bb86a0edeb6ad (diff)
downloadqa-frontpage-b0da202e625fc1c51beab67824ed948e6374a12c.tar
qa-frontpage-b0da202e625fc1c51beab67824ed948e6374a12c.tar.gz
Add proc argument to #:delay-logger
-rw-r--r--guix-qa-frontpage/database.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/guix-qa-frontpage/database.scm b/guix-qa-frontpage/database.scm
index 4e42c52..06ce3bd 100644
--- a/guix-qa-frontpage/database.scm
+++ b/guix-qa-frontpage/database.scm
@@ -167,7 +167,7 @@ CREATE TABLE IF NOT EXISTS create_branch_for_issue_logs (
(make-histogram-metric
metrics-registry
"datastore_read_delay_seconds")))
- (lambda (seconds-delayed)
+ (lambda (seconds-delayed proc)
(metric-observe delay-metric
;; TODO exact->inexact to work around
;; a bug in guile-prometheus where
@@ -207,7 +207,7 @@ CREATE TABLE IF NOT EXISTS create_branch_for_issue_logs (
(make-histogram-metric
metrics-registry
"datastore_write_delay_seconds")))
- (lambda (seconds-delayed)
+ (lambda (seconds-delayed proc)
(metric-observe delay-metric
;; TODO exact->inexact to work around
;; a bug in guile-prometheus where