David M. Lloyd

Results 306 comments of David M. Lloyd

YAML makes no distinction between keys that are quoted and non-quoted by specification. This means it's generally not possible to distinguish these cases (i.e. whether or not a key was...

The specification is relevant for two reasons. First of all, because the specification treats these cases as equal (AFAICT), then interpreting the document differently is in violation of the spec....

Even if we managed to solve the second problem, we still have the first one: that any random tooling might transform the file incompatibly because we're assuming things that are...

Do we know that all downstream consumers (specifically WildFly) are OK with not having security manager support?

~~Why would you not make the base name be `access.`?~~ Oh I see, the other parts of the config prepend a dot, but not this one.

Using the layered strategy, it seems to me that the only "correct" way to do this is to have two layers do the remapping. Like this: ```mermaid flowchart LR Any1("...")...

I'm currently experimenting with a solution that looks something like this: ```java @Remap("quarkus.native.enabled") // respond to this name/pattern... @Masks("quarkus.package.type") // ...whenever this property is found public static ConfigValue quarkusNativeEnabled(ConfigSourceInterceptorContext ctxt)...

I'd have to know more about your particular code, but CME isn't actually just about threads, it's about any case where you have an "open" iterator when a modification is...

https://issues.jboss.org/browse/WFCORE-3782