Skip to content

How to transmit a simple string from a task to another ? #561

Closed Answered by elliotgunton
EricBoix asked this question in Q&A
Discussion options

You must be logged in to vote

I think the problem is with t2 = Task("c", consume, inputs=[t1.get_parameter("msg")]) - you want to pass an argument to the msg input parameter. i.e. I think t2 = Task("c", consume, arguments={"msg": t1.get_parameter("msg")} will work. See the dag_with_param_passing and dag_with_script_param_passing for examples on how to do this

Replies: 3 comments

Comment options

You must be logged in to vote
0 replies
Answer selected by samj1912
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants
Converted from issue

This discussion was converted from issue #559 on April 07, 2023 10:38.