You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
any request created with such a header without a space is getting:
ValueError: need more than 1 value to unpack
I've manually replaced this with:
try:
method, claim=request.META['HTTP_AUTHORIZATION'].split(' ', 1)
exceptValueError:
logger.debug('HTTP_AUTHORIZATION does not have the right format for asymmetric JWT authentication.')
return
Want a pull request?
The text was updated successfully, but these errors were encountered:
Because of this line in the middleware:
any request created with such a header without a space is getting:
I've manually replaced this with:
Want a pull request?
The text was updated successfully, but these errors were encountered: