aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bffe/server.scm6
1 files changed, 4 insertions, 2 deletions
diff --git a/bffe/server.scm b/bffe/server.scm
index 2488fef..4c24559 100644
--- a/bffe/server.scm
+++ b/bffe/server.scm
@@ -438,7 +438,9 @@
body
(http-get
(string->uri
- (string-append event-source "/build/" uuid ".json")))))
+ (string-append event-source "/build/" uuid
+ ;; ".json"
+ )))))
(case (most-appropriate-mime-type
'(application/json text/html)
mime-types)
@@ -456,7 +458,7 @@
body
(http-get
(string->uri
- (string-append event-source "/agent/" agent-id ".json")))))
+ (string-append event-source "/agent/" agent-id)))))
(case (most-appropriate-mime-type
'(application/json text/html)
mime-types)