aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/guix-build-coordinator-agent.in9
1 files changed, 6 insertions, 3 deletions
diff --git a/scripts/guix-build-coordinator-agent.in b/scripts/guix-build-coordinator-agent.in
index e8a2f0c..c68f94e 100644
--- a/scripts/guix-build-coordinator-agent.in
+++ b/scripts/guix-build-coordinator-agent.in
@@ -28,7 +28,8 @@
(ice-9 textual-ports)
((guix config) #:prefix guix-config:)
(guix-build-coordinator utils)
- (guix-build-coordinator agent))
+ (guix-build-coordinator agent)
+ (guix-build-coordinator agent-messaging http))
(define %options
;; Specifications of the command-line options
@@ -117,8 +118,10 @@
%option-defaults
(cdr (program-arguments)))))
(run-agent (assq-ref opts 'uuid)
- (assq-ref opts 'coordinator)
- (assq-ref opts 'password)
+ (make-http-agent-interface
+ (assq-ref opts 'coordinator)
+ (assq-ref opts 'uuid)
+ (assq-ref opts 'password))
(delete-duplicates (assq-ref opts 'systems))
(assq-ref opts 'max-parallel-builds)
(or (assq-ref opts 'derivation-substitute-urls)