Skip to content
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

Add config for auth code persistence #5162

Merged
merged 3 commits into from
Nov 16, 2023
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -871,6 +871,12 @@
<PoolSize>0</PoolSize>
<RetryCount>{{oauth.token_generation.retry_count_on_persistence_failures}}</RetryCount>
</TokenPersistence>

<!--
Config related to OAuth2 authorization code persistence.
Prior to IS 7.0.0, this was handled by the config <TokenPersistence>.<Enable>.
-->
<EnableAuthCodePersistence>true</EnableAuthCodePersistence>

<!--
Configuration provides the ability to renew the access token and the refresh token(where applicable) per each token request
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
"oauth.token_validation.validation_response_signing_algorithm": "SHA256withRSA",
"oauth.token.validation.validation_response_jwt_validity": "15m",
"oauth.token_generation.retry_count_on_persistence_failures": "5",
"oauth.token_persistence.enable": "true",
"oauth.token_persistence.enable": true,

"oauth.access_token.generate_with_sp_tenant_domain": true,
"oauth.enable_sha256_params": true,
Expand Down
Loading