Skip to content

Commit

Permalink
core:inspect telex response
Browse files Browse the repository at this point in the history
  • Loading branch information
malachsalama committed Feb 23, 2025
1 parent 0cd35ba commit c547ed6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/routes/webhook.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ async def jira_webhook(request: Request):
async with httpx.AsyncClient() as client:
response = await client.post(slack_webhook_url, json=telex_payload)
response.raise_for_status()
response_json = await response.json()
response_json = response.json()
print(response_json)
logging.info(f"Telex API response: {response.status_code} - {response.text}")

Expand Down

0 comments on commit c547ed6

Please sign in to comment.