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
(Please follow this template replacing the text between parentheses with the requested information)
workflow and params should be defined and not null inside the workflow.onComplete closure. instead both are null.
workflow
params
process SAY_HELLO { input: val greeting output: eval("echo $greeting, world") script: """ sleep 1 """ } workflow { Channel.of("Hello", "Hallo", "Hola", "Bonjour") | SAY_HELLO | view workflow.onComplete { println "workflow is null: ${workflow == null ? 'yes' : 'no'}" println "params is null: ${params == null ? 'yes' : 'no'}" } }
Hello Hola Bonjour Hallo workflow is null: yes params is null: yes
Unable to share log files due to company data protection policy.
The text was updated successfully, but these errors were encountered:
Duplicate of #5261 , see that issue for some temporary workarounds
Sorry, something went wrong.
Closing for reason: Duplicate.
No branches or pull requests
Bug report
(Please follow this template replacing the text between parentheses with the requested information)
Expected behavior and actual behavior
workflow
andparams
should be defined and not null inside the workflow.onComplete closure. instead both are null.Steps to reproduce the problem
Program output
Environment
Additional context
Unable to share log files due to company data protection policy.
The text was updated successfully, but these errors were encountered: