Skip to content

Commit

Permalink
fix: change "600" to 600, i.e. number not string
Browse files Browse the repository at this point in the history
  • Loading branch information
andrew-longmore-tessella committed Dec 21, 2020
1 parent d32f352 commit ba0ed6c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions architecture/deployment/oidc-deployment-and-configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ of different OIDC providers and associated configuration.
"scope": "openid profile",
"authority": "https://example.eu.auth0.com",
"automaticSilentRenew": true,
"accessTokenExpiringNotificationTime": "600",
"accessTokenExpiringNotificationTime": 600,
"filterProtocolClaims": true,
"loadUserInfo": true,
"extraQueryParams": {
Expand Down Expand Up @@ -95,7 +95,7 @@ of different OIDC providers and associated configuration.
"scope": "openid profile email",
"authority": "http://keycloak:8080/auth/realms/DataLabs",
"automaticSilentRenew": true,
"accessTokenExpiringNotificationTime": "600",
"accessTokenExpiringNotificationTime": 600,
"filterProtocolClaims": true,
"loadUserInfo": true,
"metadata": {
Expand Down
2 changes: 1 addition & 1 deletion code/development-env/config/local/web_auth_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"scope": "openid profile",
"authority": "https://mjbr.eu.auth0.com",
"automaticSilentRenew": true,
"accessTokenExpiringNotificationTime": "600",
"accessTokenExpiringNotificationTime": 600,
"filterProtocolClaims": true,
"loadUserInfo": true,
"extraQueryParams": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"scope": "openid profile email",
"authority": "http://keycloak:8080/auth/realms/DataLabs",
"automaticSilentRenew": true,
"accessTokenExpiringNotificationTime": "600",
"accessTokenExpiringNotificationTime": 600,
"filterProtocolClaims": true,
"loadUserInfo": true,
"metadata": {
Expand Down

0 comments on commit ba0ed6c

Please sign in to comment.