From 7d0ce41fff0a976034328f9742ed5ea460eb5e50 Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Sun, 9 Oct 2022 11:59:28 +0100 Subject: Include priority information in the allocation plan output Also switch derivation-name to use an underscore. --- scripts/guix-build-coordinator.in | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'scripts/guix-build-coordinator.in') diff --git a/scripts/guix-build-coordinator.in b/scripts/guix-build-coordinator.in index 77dd245..f36dc00 100644 --- a/scripts/guix-build-coordinator.in +++ b/scripts/guix-build-coordinator.in @@ -865,7 +865,11 @@ tags: (lambda (index build) (simple-format #t "~A: ~A\n" index (assoc-ref build "uuid")) (simple-format #t " derivation name: ~A\n" - (assoc-ref build "derivation-name")) + (assoc-ref build "derivation_name")) + (simple-format #t " priority: ~A\n" + (assoc-ref build "priority")) + (simple-format #t " derived priority: ~A\n" + (assoc-ref build "derived_priority")) (let ((tags (assoc-ref build "tags"))) (unless (eq? 0 (vector-length tags)) (simple-format #t " tags:\n") -- cgit v1.2.3