We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d1e9e80 commit 0b7d35aCopy full SHA for 0b7d35a
service/auth.py
@@ -160,7 +160,7 @@ def authentication():
160
tapis_token = auth_token.replace('Bearer ', '')
161
logger.debug(f"found auth header; setting environ X-Tapis-Token to {tapis_token}")
162
# modify the WSGI environment directly
163
- # wsgi requires headers be uppercase, no dashes, and prefixed with HTTP_
+ # wsgi requires headers be uppercase, no dashes, and prefixed with 'HTTP_'
164
request.environ['HTTP_X_TAPIS_TOKEN'] = tapis_token
165
except Exception as e:
166
logger.error(f"found auth header, but failed to parse it; exception: {e}")
0 commit comments