mirror of
https://github.com/GNS3/gns3-server
synced 2024-11-24 17:28:08 +00:00
Fix an utf8 error in auth code
This commit is contained in:
parent
80e361ff2e
commit
ac05db5d1b
@ -21,7 +21,6 @@ import urllib
|
|||||||
import asyncio
|
import asyncio
|
||||||
import aiohttp
|
import aiohttp
|
||||||
import logging
|
import logging
|
||||||
import urllib
|
|
||||||
import traceback
|
import traceback
|
||||||
import jsonschema
|
import jsonschema
|
||||||
|
|
||||||
@ -114,7 +113,7 @@ class Route(object):
|
|||||||
return
|
return
|
||||||
|
|
||||||
if "AUTHORIZATION" in request.headers:
|
if "AUTHORIZATION" in request.headers:
|
||||||
if request.headers["AUTHORIZATION"] == aiohttp.helpers.BasicAuth(user, password).encode():
|
if request.headers["AUTHORIZATION"] == aiohttp.helpers.BasicAuth(user, password, "utf-8").encode():
|
||||||
return
|
return
|
||||||
|
|
||||||
log.error("Invalid auth. Username should %s", user)
|
log.error("Invalid auth. Username should %s", user)
|
||||||
|
Loading…
Reference in New Issue
Block a user