workbench-script: improve err msg for HTTP POST

This commit is contained in:
pedro 2024-09-27 09:17:48 -03:00
parent e915c07cfe
commit 0c98243ecb
1 changed files with 2 additions and 2 deletions

View File

@ -288,8 +288,8 @@ def send_snapshot_to_devicehub(snapshot, token, url):
try: try:
requests.post(url, data=json.dumps(snapshot), headers=headers) requests.post(url, data=json.dumps(snapshot), headers=headers)
print(f"workbench: INFO: Snapshot sent to '{url}'") print(f"workbench: INFO: Snapshot sent to '{url}'")
except: except Exception as e:
print(f"workbench: ERROR: Snapshot not remotely sent. URL '{url}' is unreachable. Do you have internet? Is your server up & running?") print(f"workbench: ERROR: Snapshot not remotely sent. URL '{url}' is unreachable. Do you have internet? Is your server up & running?\n {e}")
def load_config(config_file="settings.ini"): def load_config(config_file="settings.ini"):
""" """