Skip to content
This repository has been archived by the owner on Jan 4, 2023. It is now read-only.

Commit

Permalink
chore(oidc): source id token expiration time
Browse files Browse the repository at this point in the history
  • Loading branch information
vmttn committed Apr 15, 2021
1 parent 2254216 commit 782baf4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django/river/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@
OIDC_STORE_ID_TOKEN = True
OIDC_STORE_ACCESS_TOKEN = True
# Silently re-authenticated after following time:
OIDC_RENEW_ID_TOKEN_EXPIRY_SECONDS = 60 * 15
OIDC_RENEW_ID_TOKEN_EXPIRY_SECONDS = int(os.environ.get("OIDC_RENEW_ID_TOKEN_EXPIRY_SECONDS", 12 * 60 * 60))

# Relying party
OIDC_RP_CLIENT_ID = os.environ.get("OIDC_RP_CLIENT_ID")
Expand Down

0 comments on commit 782baf4

Please sign in to comment.