mirror of
https://github.com/valitydev/redash.git
synced 2024-11-06 09:05:17 +00:00
Fix: log message for bad auth token was malformed (#5557)
This commit is contained in:
parent
7445080d1a
commit
0f41f25720
@ -38,9 +38,9 @@ def render_token_login_page(template, org_slug, token, invite):
|
||||
user = models.User.get_by_id_and_org(user_id, org)
|
||||
except NoResultFound:
|
||||
logger.exception(
|
||||
"Bad user id in token. Token= , User id= %s, Org=%s",
|
||||
user_id,
|
||||
"Bad user id in token. Token=%s , User id= %s, Org=%s",
|
||||
token,
|
||||
user_id,
|
||||
org_slug,
|
||||
)
|
||||
return (
|
||||
|
Loading…
Reference in New Issue
Block a user