[Smallrye config, linux env] Map<String, boolean> with strings with -
#55091
|
Is there any way to get a ConfigMapping to work in a nice way with something like feature-toggle.label-number=true like feature-toggle.DEV-1123=true? Been trying to get this to work export FEATURE_TOGGLE_DEV_777=trueand application properites noticed that the export was made into feature.toggle.DEV.777 or feature-toggle."DEV-777" when i used |
Answered by
radcortez
Jun 26, 2026
Replies: 1 comment 7 replies
|
/cc @Ladicek (smallrye), @jmartisk (smallrye), @phillip-kruger (smallrye), @radcortez (config,smallrye) |
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes, unless your terminal accepts
-, and in that case, you can use the actual separator character for your key.Alternatively, you can also use a
.envfile, which doesn't have the terminal's limitations.