We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Now we support 2 kinds of parameter definition.
${}
$[]
$[add_months(yyyyMMdd,N)]
But now we can't support the case that we need concat a fixed value with a dynamic value. like /tmp/${system.workflow.instance.id}
/tmp/${system.workflow.instance.id}
Do we need improve the parser to support more flexible definition. like /tmp/$[yyyy-MM-dd]/${system.workflow.instance.id}
/tmp/$[yyyy-MM-dd]/${system.workflow.instance.id}
refactor the current class, make each class's function clear create 3 parser implemention
$<>
No response
Create new test and update/check exist test
The text was updated successfully, but these errors were encountered:
cc @ruanwenjun @Radeity @Gallardot @caishunfeng @EricGao888
Sorry, something went wrong.
I think this is currently supported. Can you give an example?
But now we can't support the case that we need concat a fixed value with a dynamic value. like /tmp/${system.workflow.instance.id} I think this is currently supported. Can you give an example?
Sorry, My bad, I try to use ${/tmp/${system.workflow.instance.id} before, It not work.
${/tmp/${system.workflow.instance.id}
When i use /tmp/${system.workflow.instance.id}, it's work
No branches or pull requests
Search before asking
Motivation
Now we support 2 kinds of parameter definition.
use
${}
use
$[]
, and in this variable we also support data calculate, like$[add_months(yyyyMMdd,N)]
But now we can't support the case that we need concat a fixed value with a dynamic value.
like
/tmp/${system.workflow.instance.id}
Do we need improve the parser to support more flexible definition.
like
/tmp/$[yyyy-MM-dd]/${system.workflow.instance.id}
Design Detail
refactor the current class, make each class's function clear
create 3 parser implemention
${}
variable, and replace with parameterMap's value$[]
variable, calculate and replace time related placeholder$<>
variable, and for loop to find other placeholder,${}
,$[]
. replace the response with placeholder.Compatibility, Deprecation, and Migration Plan
No response
Test Plan
Create new test and update/check exist test
Code of Conduct
The text was updated successfully, but these errors were encountered: