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'd have to double check but I would think this is due to the under lying realm database having a fixed name and hence file store. A second queue would try and connect to the same realm instance as the first, with obvious issues!
You could fork and make the ability to specify a realm name/file which would help you. Funnily enough, that seems to be baked in to the database file but not exposed through the queue options.
Hello,
I want to create 2 instancies of Queue, like:
const queue = await queueFactory();
const tempQueue = await queueFactory();
But the
tempQueue
is not working withtempQueue.start()
, he do not call my jobs and not print anything in thelog.console
after I callqueue.stop()
.Is this a bug?
The text was updated successfully, but these errors were encountered: