Some fixes found while testing #7
|
@ -309,6 +309,10 @@ def save_snapshot_in_disk(snapshot, path, snap_uuid):
|
|||
# url = 'http://127.0.0.1:8000/api/snapshot/'
|
||||
def send_snapshot_to_devicehub(snapshot, token, url):
|
||||
url_components = urllib.parse.urlparse(url)
|
||||
|
||||
if isinstance(snapshot, str):
|
||||
snapshot = json.loads(snapshot)
|
||||
|
||||
ev_path = "evidence/{}".format(snapshot["uuid"])
|
||||
components = (url_components.schema, url_components.netloc, ev_path, '', '', '')
|
||||
ev_url = urllib.parse.urlunparse(components)
|
||||
|
|
Loading…
Reference in New Issue