[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/20: Include the package version in the "error when computing" message
From: |
Christopher Baines |
Subject: |
06/20: Include the package version in the "error when computing" messages |
Date: |
Mon, 4 Nov 2024 12:27:29 -0500 (EST) |
cbaines pushed a commit to branch master
in repository data-service.
commit ff32aa899e5153346beb6f9ba4bb7d75ebe83831
Author: Christopher Baines <mail@cbaines.net>
AuthorDate: Thu Oct 24 18:55:12 2024 +0200
Include the package version in the "error when computing" messages
As this helps when there are lots of packages with the same name.
---
guix-data-service/jobs/load-new-guix-revision.scm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/guix-data-service/jobs/load-new-guix-revision.scm
b/guix-data-service/jobs/load-new-guix-revision.scm
index 67023b3..294c830 100644
--- a/guix-data-service/jobs/load-new-guix-revision.scm
+++ b/guix-data-service/jobs/load-new-guix-revision.scm
@@ -517,8 +517,9 @@
(lambda args
(simple-format
(current-error-port)
- "warning: error when computing ~A derivation for system ~A (~A):
~A\n"
+ "warning: error when computing ~A@~A derivation for system ~A
(~A): ~A\n"
(package-name package)
+ (package-version package)
system
(or target "no target")
args)
- 02/20: Increase parallelism when loading revisions, (continued)
- 02/20: Increase parallelism when loading revisions, Christopher Baines, 2024/11/04
- 10/20: Add a comment, Christopher Baines, 2024/11/04
- 08/20: Use a common derivation-ids-hash-table, Christopher Baines, 2024/11/04
- 04/20: Add fibers-promise-reset, Christopher Baines, 2024/11/04
- 05/20: Ensure the guix derivations are stored prior to attempting to substitute, Christopher Baines, 2024/11/04
- 12/20: Add new fibers utilities, Christopher Baines, 2024/11/04
- 14/20: Ensure that call-with-resource-from-pool doesn't get stuck, Christopher Baines, 2024/11/04
- 07/20: Add placeholder derivation source file nar procedures, Christopher Baines, 2024/11/04
- 15/20: Tweak the resource pool return behaviour, Christopher Baines, 2024/11/04
- 20/20: Move the inferior cleanup to the end of each system+target, Christopher Baines, 2024/11/04
- 06/20: Include the package version in the "error when computing" messages,
Christopher Baines <=
- 13/20: Add call-with-default-io-waiters, Christopher Baines, 2024/11/04
- 17/20: Increase the sleep-operation time for telling waiters to retry, Christopher Baines, 2024/11/04
- 19/20: Refactor, Christopher Baines, 2024/11/04
- 18/20: Use a separate db connection in channel-derivations-by-system-promise, Christopher Baines, 2024/11/04
- 11/20: Add make-queueing-channel, Christopher Baines, 2024/11/04
- 09/20: Rework inserting derivations, Christopher Baines, 2024/11/04
- 16/20: Finish chasing the call-with-resource-pool bug, Christopher Baines, 2024/11/04