Skip to content

Commit

Permalink
fix(bootstrapper): fix httpx response
Browse files Browse the repository at this point in the history
  • Loading branch information
emileten committed Oct 31, 2023
1 parent b276168 commit dc68d1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/database/bootstrapper_runtime/handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -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))

Expand Down

0 comments on commit dc68d1c

Please sign in to comment.