remove debug statement
This commit is contained in:
parent
6e52b3c356
commit
61fd6d45f6
1 changed files with 0 additions and 1 deletions
|
|
@ -289,7 +289,6 @@ class HttpAPI(Common):
|
||||||
try:
|
try:
|
||||||
data = decrypt_data(auth_cookie, key=Config.get_instance().secret_key)
|
data = decrypt_data(auth_cookie, key=Config.get_instance().secret_key)
|
||||||
if data is not None:
|
if data is not None:
|
||||||
LOG.info(f"Decoded cookie data '{data}'.")
|
|
||||||
data = base64.b64encode(data.encode()).decode()
|
data = base64.b64encode(data.encode()).decode()
|
||||||
auth_header = f"Basic {data}"
|
auth_header = f"Basic {data}"
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue