api: remove authentication fallback for pre-0.12 proxies

This commit is contained in:
Jens Langhammer 2020-10-26 11:00:19 +01:00
parent 6bfd465855
commit 4e12003944
1 changed files with 1 additions and 4 deletions

View File

@ -25,10 +25,7 @@ def token_from_header(raw_header: bytes) -> Optional[Token]:
try:
auth_credentials = b64decode(auth_credentials.encode()).decode()
except UnicodeDecodeError:
# TODO: Remove this workaround
# temporary fallback for 0.11 to 0.12 upgrade
# 0.11 and below proxy sends authorization header not base64 encoded
pass
return None
# Accept credentials with username and without
if ":" in auth_credentials:
_, password = auth_credentials.split(":")