render back unresolved tokens#1072
Conversation
|
Hi @jasmith-hs I want to ask you if there is a change to merge my PR in one of the next releases. |
|
@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 |
|
Just opened this pr #1150 leveraging Features.. |
|
@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! |
|
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 }}