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
bb4df5b Introduced a regression of #375.
Although request.headers[KEY] lookup is case-insensitive, iterating over .items() yields header keys with the original letter case. The tests pass because they use a lowercased authorization header.
The fix could be as simple as adding k.lower().
bb4df5b Introduced a regression of #375.
Although
request.headers[KEY]
lookup is case-insensitive, iterating over.items()
yields header keys with the original letter case. The tests pass because they use a lowercasedauthorization
header.The fix could be as simple as adding
k.lower()
.django-silk/silk/model_factory.py
Lines 72 to 74 in 274898f
The text was updated successfully, but these errors were encountered: