We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7db032d commit 752b703Copy full SHA for 752b703
firetail/auditor.py
@@ -105,7 +105,8 @@ def clean_pii(self, payload):
105
oauth = False
106
auth_token = None
107
108
- if auth_header := request.headers.get("Authorization"):
+ if auth_header := request.headers.get("Authorization", request.headers.get("authorization")):
109
+
110
if "bearer " in auth_header.lower():
111
oauth = True
112
auth_token = auth_header.split(" ")[1] if " " in auth_header else None
0 commit comments