From dc68d1cfaa7cee573d3c34f19899a9c3a1b95761 Mon Sep 17 00:00:00 2001 From: emileten Date: Tue, 31 Oct 2023 17:45:09 +0900 Subject: [PATCH] fix(bootstrapper): fix httpx response --- lib/database/bootstrapper_runtime/handler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/database/bootstrapper_runtime/handler.py b/lib/database/bootstrapper_runtime/handler.py index 12fb1b5..0334729 100644 --- a/lib/database/bootstrapper_runtime/handler.py +++ b/lib/database/bootstrapper_runtime/handler.py @@ -59,7 +59,7 @@ def send( try: response = httpx.put(responseUrl, data=json_responseBody, headers=headers) - print("Status code: " + response.reason) + print("Status code: " + response.status_code) except Exception as e: print("send(..) failed executing httpx.put(..): " + str(e))