Skip to content

Commit

Permalink
Merge pull request #474 from gitautoai/wes
Browse files Browse the repository at this point in the history
Debug why gitauto-jira is not trigerred
  • Loading branch information
hiroshinishio authored Jan 16, 2025
2 parents eccc65a + 46a6273 commit 9684e0f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion services/jira/jira_manager.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Standard imports
from datetime import datetime
from json import dumps
from typing import Any

# Third party imports
Expand All @@ -19,7 +20,7 @@
@handle_exceptions(default_return_value=None, raise_on_error=True)
async def verify_jira_webhook(request: Request):
"""Verify that the request came from Atlassian Forge"""
# print("Request Headers:", json.dumps(dict(request.headers), indent=2))
print("Request Headers:", dumps(dict(request.headers), indent=2))

# Verify that the request came from Atlassian Forge
if request.headers.get("atl-edge-tenant") != "forge-outbound-proxy":
Expand Down

0 comments on commit 9684e0f

Please sign in to comment.