Skip to content
Discussion options

You must be logged in to vote

Hi @bhpersonal , I know you asked this a while ago, but I'll answer for the edification of anyone who comes across this post.

Ideally, you should output the csv file as an output channel in process_a, then you can pass that channel to process_b. That way, process_b will start only after process_a is done, and it will receive the csv file directly to its folder. Meanwhile you can publish the csv file from process_a to an output folder if you want.

Alternatively, you can pass the "ready" channel you made for process_a to process_b as an input, and that will at least ensure that process_b waits for process_a. But really you should do the first thing I suggested.

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by bentsherman
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