You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried to mix Node.js and Python for a complex flow with multiple children and grandchildren, passing the data using job.getChildrenValues successfully between Node.js workers.
But that method doesn't exist in Python? Is there an alternative to fetch the data produced by the child?
The text was updated successfully, but these errors were encountered:
At the moment I just hacked it together with this:
conn=job.queue.client# Construct the processed keyprocessed_key=f"bull:{job.queue.name}:{job.id}:processed"# Fetch data from Redis using the processed keyprocessed_data=awaitconn.hgetall(processed_key)
I tried to mix Node.js and Python for a complex flow with multiple children and grandchildren, passing the data using
job.getChildrenValues
successfully between Node.js workers.But that method doesn't exist in Python? Is there an alternative to fetch the data produced by the child?
The text was updated successfully, but these errors were encountered: