bito-code-review[bot] commented on PR #35044: URL: https://github.com/apache/superset/pull/35044#issuecomment-5109988380
<!-- Bito Reply --> The configuration examples in the documentation use colons (`:`) instead of assignment operators (`=`), which is syntactically incorrect for Python configuration files like `superset_config.py`. Using `=` is necessary for these settings to be correctly assigned and take effect. You should update the lines in `superset_config.py` to use `=` instead of `:`. **docs/versioned_docs/version-6.0.0/configuration/configuring-superset.mdx** ``` AUTH_TYPE = AUTH_OID SECRET_KEY = 'SomethingNotEntirelySecret' OIDC_CLIENT_SECRETS = '/path/to/client_secret.json' OIDC_ID_TOKEN_COOKIE_SECURE = False OIDC_OPENID_REALM = '<myRealm>' OIDC_INTROSPECTION_AUTH_METHOD = 'client_secret_post' ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
