[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: Fix a timezone issue
From: |
Christopher Baines |
Subject: |
branch master updated: Fix a timezone issue |
Date: |
Sat, 10 Apr 2021 09:44:20 -0400 |
This is an automated email from the git hooks/post-receive script.
cbaines pushed a commit to branch master
in repository data-service.
The following commit(s) were added to refs/heads/master by this push:
new c2c033b Fix a timezone issue
c2c033b is described below
commit c2c033b43549bfd3ce43fcba5284675cdd767b18
Author: Christopher Baines <mail@cbaines.net>
AuthorDate: Sat Apr 10 14:44:10 2021 +0100
Fix a timezone issue
---
guix-data-service/substitutes.scm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/guix-data-service/substitutes.scm
b/guix-data-service/substitutes.scm
index 724f3e1..3328092 100644
--- a/guix-data-service/substitutes.scm
+++ b/guix-data-service/substitutes.scm
@@ -75,7 +75,8 @@
(if (null? revision-commits)
(time-utc->date
(subtract-duration (current-time)
- (make-time time-duration 0 (* 60 5))))
+ (make-time time-duration 0 (* 60 5)))
+ 0) ; tz-offset
#f))))
(simple-format #t "Querying ~A outputs\n"
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: Fix a timezone issue,
Christopher Baines <=