We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi everyone,
I have a JobtasticTask like this:
result = SimulationTask.delay_or_fail(simulation_id=instance.id)
When I call this method in my tests my tests time out because they are stuck here.
That's why we have CELERY_TASK_ALWAYS_EAGER which works perfectly for regular celery tasks.
CELERY_TASK_ALWAYS_EAGER
Apparantly there is some issue with JobtasticTasks...
I'm using: django==2.0.5 celery==4.2.0 jobtastic==2.0.0 django_celery_results==1.0.1 django_celery_beat==1.1.1
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi everyone,
I have a JobtasticTask like this:
result = SimulationTask.delay_or_fail(simulation_id=instance.id)
When I call this method in my tests my tests time out because they are stuck here.
That's why we have
CELERY_TASK_ALWAYS_EAGER
which works perfectly for regular celery tasks.Apparantly there is some issue with JobtasticTasks...
I'm using:
django==2.0.5
celery==4.2.0
jobtastic==2.0.0
django_celery_results==1.0.1
django_celery_beat==1.1.1
The text was updated successfully, but these errors were encountered: