Skip to content

Commit b879076

Browse files
authored
fix(bootstrapper): fix httpx response (#81)
1 parent 3fe3f2f commit b879076

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/database/bootstrapper_runtime/handler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def send(
5959

6060
try:
6161
response = httpx.put(responseUrl, data=json_responseBody, headers=headers)
62-
print("Status code: " + response.reason)
62+
print("Status code: " + response.status_code)
6363
except Exception as e:
6464
print("send(..) failed executing httpx.put(..): " + str(e))
6565

0 commit comments

Comments
 (0)