8000 Fix for issue in PR #1233: logging issue by flashguerdon · Pull Request #1249 · uc-cdis/fence · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Fix for issue in PR #1233: logging issue #1249

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: automatedCopy-feature/oidc-oauth-groups-rev2
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion fence/blueprints/login/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ def get(self):
# default to now + REFRESH_TOKEN_EXPIRES_IN
if expires is None:
expires = int(time.time()) + config["REFRESH_TOKEN_EXPIRES_IN"]
logger.info(self, f"Refresh token not in JWT, using default: {expires}")
logger.info(f"Refresh token not in JWT, using default: {expires}")

# Store refresh token in db
should_persist_token = (
Expand Down
0