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
{{ message }}
This repository has been archived by the owner on Sep 10, 2024. It is now read-only.
If using external application.properties file via SPRING_CONFIG_ADDITIONAL_LOCATION env var, you cannot enable the plugin in non-dev environments.
Reason:
ConsoleConfig gets the config map and checks if the enabled flag is of type Boolean.
This does not work with external config files, as everything is String.
Maybe it helps to rework the ConsoleConfig class to use config.getProperty("enabled", Boolean, false) and check that one.
The text was updated successfully, but these errors were encountered:
If using external application.properties file via SPRING_CONFIG_ADDITIONAL_LOCATION env var, you cannot enable the plugin in non-dev environments.
Reason:
ConsoleConfig gets the config map and checks if the enabled flag is of type Boolean.
This does not work with external config files, as everything is String.
Maybe it helps to rework the ConsoleConfig class to use config.getProperty("enabled", Boolean, false) and check that one.
The text was updated successfully, but these errors were encountered: