diff options
Diffstat (limited to 'aws/request.scm')
-rw-r--r-- | aws/request.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/aws/request.scm b/aws/request.scm index 95dcfd1..8ecb543 100644 --- a/aws/request.scm +++ b/aws/request.scm @@ -213,7 +213,7 @@ corresponding value in INPUT." ".")) (define endpoint (or (getenv "GUILE_AWS_DEBUG_ENDPOINT") - (string-append "https://" host "/"))) + (string-append "https://" host))) (define json? (match (assoc-ref api-metadata 'protocol) ("json" #true) @@ -327,7 +327,7 @@ corresponding value in INPUT." (call-with-values (lambda () - (http-request endpoint + (http-request (string-append endpoint canonical-uri) #:method (string->symbol method) #:body (match method |