aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorMS <ms@taler.net>2020-07-21 18:43:28 +0200
committerMS <ms@taler.net>2020-07-21 18:43:28 +0200
commitd0a4669da76f32232c9c189eb7828843dea2b6d7 (patch)
treeb62d46fb3af98387354d07ef923a9f4da5392f75 /bin
parent0ac531596cc7be0bc87834e30b3048c47a179892 (diff)
downloaddeployment-d0a4669da76f32232c9c189eb7828843dea2b6d7.tar.gz
deployment-d0a4669da76f32232c9c189eb7828843dea2b6d7.tar.bz2
deployment-d0a4669da76f32232c9c189eb7828843dea2b6d7.zip
debug
Diffstat (limited to 'bin')
-rwxr-xr-xbin/taler-config-instances3
1 files changed, 1 insertions, 2 deletions
diff --git a/bin/taler-config-instances b/bin/taler-config-instances
index 608e00d..168cbf7 100755
--- a/bin/taler-config-instances
+++ b/bin/taler-config-instances
@@ -14,8 +14,7 @@ INSTANCE_CONFIG_URL = "{}/private/instances".format(MERCHANT_BACKEND_BASE_URL)
def expectResponse(response, expected_status_code):
if response.status_code != expected_status_code:
print("Configuration failed on URL: {}".format(response.url))
- # stdout/stderr from both services is A LOT of text.
- # Confusing to dump all that to console.
+ print(response.text)
exit(1)
# Allows for finer grained checks.
return response