fix ws token auth

This commit is contained in:
Timothy Pogue
2022-09-08 11:25:30 -06:00
parent fac6626459
commit b9e7af1ce2
4 changed files with 28 additions and 7 deletions

View File

@@ -62,7 +62,7 @@ async def get_ws_token(
# Just return the token if it matches
return token
else:
logger.debug("Denying websocket request")
logger.info("Denying websocket request")
# If it doesn't match, close the websocket connection
await ws.close(code=status.WS_1008_POLICY_VIOLATION)