From cc0f0f7c523b2fe831bc3c31a864606ea1274446 Mon Sep 17 00:00:00 2001 From: doku88 Date: Sun, 15 Dec 2024 18:54:06 -0800 Subject: [PATCH] edited upload.py due to changes in endpt --- synth_sdk/tracing/upload.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/synth_sdk/tracing/upload.py b/synth_sdk/tracing/upload.py index 00ea21e..e548358 100644 --- a/synth_sdk/tracing/upload.py +++ b/synth_sdk/tracing/upload.py @@ -108,9 +108,9 @@ async def _async_operations(): upload_id = response.json()["upload_id"] signed_url = response.json()["signed_url"] - message = response.json()["message"] + status = response.json()["status"] - print(f"Message: {message}") + print(f"Status: {status}") print(f"Upload ID retrieved: {upload_id}") print(f"Signed URL: {signed_url}")