commit d0a4669da76f32232c9c189eb7828843dea2b6d7
parent 0ac531596cc7be0bc87834e30b3048c47a179892
Author: MS <ms@taler.net>
Date: Tue, 21 Jul 2020 18:43:28 +0200
debug
Diffstat:
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git 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