From 7c30d569100a351f2a0a6430093abb8791f44fcf Mon Sep 17 00:00:00 2001 From: "Jose M. Guisado" Date: Tue, 17 Oct 2023 09:27:46 +0200 Subject: cli: fix messages when receiving an error response ogCLI displays a message like "Cannot connect to ogServer: [...]" when ogServer replies with something different from 2XX. Fix these strings because ogServer is actually connected and replying to an ogCLI request. --- cli/cli.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'cli') diff --git a/cli/cli.py b/cli/cli.py index db52b4c..f2175a7 100644 --- a/cli/cli.py +++ b/cli/cli.py @@ -32,8 +32,8 @@ class OgREST(): headers=self.HEADERS, json=payload) if r.status_code != 200: - sys.exit(f"Cannot connect to ogServer: " - f"{r.status_code} HTTP status code") + sys.exit(f"Unsuccessful request to ogServer: " + f"Response with {r.status_code} HTTP status code") except IOError as e: sys.exit(f"Cannot connect to ogServer: {e}") return r @@ -45,8 +45,8 @@ class OgREST(): json=payload) print(r.text) if r.status_code not in {200, 202}: - sys.exit(f"Cannot connect to ogServer: " - f"{r.status_code} HTTP status code") + sys.exit(f"Unsuccessful request to ogServer: " + f"Response with {r.status_code} HTTP status code") except IOError as e: sys.exit(f"Cannot connect to ogServer: {e}") return r @@ -59,7 +59,7 @@ class OgREST(): print(r.text) if r.status_code != 200: sys.exit(f"Unsuccessful request to ogServer: " - f"{r.status_code} HTTP status code") + f"Response with {r.status_code} HTTP status code") except IOError as e: sys.exit(f"Cannot connect to ogServer: {e}") return r -- cgit v1.2.3-18-g5258