Skip to content

Commit

Permalink
don't log the whole request
Browse files Browse the repository at this point in the history
  • Loading branch information
Tankilevitch committed Jul 27, 2023
1 parent 1079371 commit ce96829
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integrations/azure/integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ async def cloud_event_validation_middleware_handler(
"""
response = await call_next(request)
if request.method == "OPTIONS" and request.url.path.startswith("/integration"):
logger.info("Detected cloud event validation request", request=request)
logger.info("Detected cloud event validation request")
response.headers["WebHook-Allowed-Rate"] = "1000"
response.headers["WebHook-Allowed-Origin"] = "*"
return response

0 comments on commit ce96829

Please sign in to comment.