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'm trying to write tests for an app using django-q, so I thought just use the ORM broker and force tasks to run synchronously:
Q_CLUSTER = {
'sync': True,
'orm': 'default'
}
My test calls a function that enqueues a task,
Creating test database for alias 'default'...
10:37:57 [Q] INFO Starting check on expired.identrustssl.com
10:37:58 [Q] INFO MainProcess ready for work at 22161
10:37:58 [Q] INFO MainProcess processing [potato-eight-west-jersey]
10:38:00 [Q] INFO MainProcess stopped doing work
10:38:00 [Q] INFO MainProcess monitoring at 22161
10:38:00 [Q] ERROR connection already closed
10:38:00 [Q] ERROR Failed [potato-eight-west-jersey] - connection already closed
Am I missing something?
The text was updated successfully, but these errors were encountered:
I'm trying to write tests for an app using django-q, so I thought just use the ORM broker and force tasks to run synchronously:
My test calls a function that enqueues a task,
Am I missing something?
The text was updated successfully, but these errors were encountered: