You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a Spring Boot 3.3 application that has two profiles - demo and production. Production is secured by Okta, demo is not. All of the classes that access okta-spring-boot are excluded in the demo profile. None-the-less, when I start the application in this profile, OktaEnvironmentPostProcessorApplicationListener tries to validate my application-demo.yml and complains that there is no Okta Issuer URL. If the check ConfigurationValidator.validateIssuer(environment.getProperty("okta.oauth2.issuer")
was in the auto configure, it would be easy to disable in the application.yml:
I'm submitting a
Describe your request here (if necessary).
I have a Spring Boot 3.3 application that has two profiles - demo and production. Production is secured by Okta, demo is not. All of the classes that access okta-spring-boot are excluded in the demo profile. None-the-less, when I start the application in this profile, OktaEnvironmentPostProcessorApplicationListener tries to validate my application-demo.yml and complains that there is no Okta Issuer URL. If the check
ConfigurationValidator.validateIssuer(environment.getProperty("okta.oauth2.issuer")
was in the auto configure, it would be easy to disable in the application.yml:
I know this is a minor annoyance that doesn't impact the security or leak sensitive information, but I hate seeing "Warning" in my logs.
SDK Version
3.0.7
The text was updated successfully, but these errors were encountered: