Open
Description
Given a source YAML that looks like this:
quarkus:
opentelemetry:
enabled: true
and a recipe ChangePropertyKey("quarkus.opentelemetry.enabled", "quarkus.otel.enabled", ..)
the result is
quarkus:
otel.enabled: true
This automatic coalescing of property names confuses Quarkus, which treats the new property as quarkus."otel.enabled"
and doesn't match it to quarkus.otel.enabled
.
The correct output in this case would be:
quarkus:
otel:
enabled: true
Metadata
Assignees
Labels
Type
Projects
Status
Backlog
Activity