workbench-script: improve err msg for HTTP POST
This commit is contained in:
parent
e915c07cfe
commit
0c98243ecb
|
@ -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"):
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in New Issue