commit dedfddd31dc3f837365f1756741ecadb4d058650
parent 06bc7c4de7e40a362562df514d88a98e251f4b13
Author: Florian Dold <florian.dold@gmail.com>
Date: Tue, 30 Jan 2018 00:39:42 +0100
add auth header to BB merchant backend check
Diffstat:
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/buildbot/checks.sh b/buildbot/checks.sh
@@ -33,7 +33,9 @@ fi
http_status_code=$(curl \
-H "X-Taler-Deployment-Color: $nonactive" \
- -s http://backend.test.taler.net/ -o /dev/null \
+ -s http://backend.test.taler.net/ \
+ --header "Authorization: ApiKey sandbox" \
+ -o /dev/null \
-w "%{http_code}")
if ! test 200 = $http_status_code; then
printf "$error_fmt" \