-
Notifications
You must be signed in to change notification settings - Fork 3.2k
New issue
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
fix(controller): Randomly expr expression fail to resolve #6410
Conversation
Signed-off-by: Saravanan Balasubramanian <[email protected]>
workflow/common/common.go
Outdated
@@ -139,7 +139,7 @@ const ( | |||
// GlobalVarWorkflowDuration is the current duration of this workflow | |||
GlobalVarWorkflowDuration = "workflow.duration" | |||
// GlobalVarWorkflowParameters is a JSON string containing all workflow parameters | |||
GlobalVarWorkflowParameters = "workflow.parameters" | |||
GlobalVarWorkflowParameters = "workflow.parameters.json" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Randomly bellows.Expand
failed to expend all global variable workflow.parameters.xxx
if workflow.parameters
expended first. We should have a different name for workflow.parameters
json format.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we should raise a bug with bellows?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe not, I think it does not make sense - but can we make sure that this is not used - new in v3.1?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
also - should work for fasttemplate
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fasttemplate
will just string replace. it will work. I can ask the community channel for this variable.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if it is in v3.0, then changing it would be breaking change
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we should exclude this from {{=
templates. Users should not need it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we can prevent to have {{= in when
element. So this is the way when will have only govaluate
format.
Signed-off-by: Saravanan Balasubramanian <[email protected]>
This comment was marked as resolved.
This comment was marked as resolved.
feat: Expose workflow.paramteres with JSON string of all params (#2341) Date to 2020, so can't change name. |
Signed-off-by: Saravanan Balasubramanian <[email protected]>
Signed-off-by: Saravanan Balasubramanian <[email protected]>
Signed-off-by: Saravanan Balasubramanian <[email protected]>
Signed-off-by: Saravanan Balasubramanian <[email protected]>
Signed-off-by: Saravanan Balasubramanian [email protected]
closes #6257
Checklist:
Tips:
git commit --signoff
.make pre-commit -B
to fix codegen or lint problems.