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
Looking through issues, I see that several others including myself have had issues when deploying apps using bullmq and redis to dockerized containers.
A lot of the time, for classes like QueueEvents or FlowProducer not passing in an explicit redis connection will result in a default connection being passed, usually localhost.
Its not clear that these constructors require redis connections. It would be helpful if the examples in the docs provided clearer indications that you should pass in redis connections to these classes.
const connection = new Redis()
const events = new QueueEvents('Paint', connection)
The text was updated successfully, but these errors were encountered:
Looking through issues, I see that several others including myself have had issues when deploying apps using bullmq and redis to dockerized containers.
A lot of the time, for classes like
QueueEvents
orFlowProducer
not passing in an explicit redis connection will result in a default connection being passed, usually localhost.Its not clear that these constructors require redis connections. It would be helpful if the examples in the docs provided clearer indications that you should pass in redis connections to these classes.
The text was updated successfully, but these errors were encountered: