Uh oh!
There was an error while loading. Please reload this page.
render back unresolved tokens - #1072
Conversation
marius-diumia
commented
Oct 10, 2023
Hi @jasmith-hs I want to ask you if there is a change to merge my PR in one of the next releases. |
jasmith-hs
commented
Oct 23, 2023
@marius-diumia would you be able change this to use the new Features way of adding flags: #1066, and then I can merge it in for the next release |
abarrafo
commented
Jan 19, 2024
Just opened this pr #1150 leveraging Features.. |
abarrafo
commented
Jan 22, 2024
@marius-diumia you can close this out now. Have a look in the test in PR: #1150 for usage. @jasmith-hs what is your release lifecycle? When would we expect this to be in maven-central? Thanks! |
marius-diumia
commented
Jan 22, 2024
resolved by PR #1150 |
This change allow to render back tokens which are unresolved.
Default behaviour is:
key = "resolved"this is {{ key }} but this is {{ missing }}this is resolved but this isEnabling configuration
.withRenderBackUnknownTokens(true)the behaviour is:key = "resolved"this is {{ key }} but this is {{ missing }}this is resolved but this is {{ missing }}