Skip to content
Discussion options

You must be logged in to vote

@J-81 is correct above. You have two queue channels as input to your process and one of them has a single element, which means the process will not generate a task as long as there aren't elements for both inputs to be consumed.

One solution is to have the single-element channel as a value channel. Value channels are single-element channels that can be consumed indefinitely. You can do trimming_ch.first() to turn it into a value channel, for example.

Replies: 3 comments

Comment options

You must be logged in to vote
0 replies
Comment options

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