-
Notifications
You must be signed in to change notification settings - Fork 77
New issue
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
rundramatiq finds too many tasks modules #33
Comments
You can work around this by creating a command in your project that subclasses the rundramatiq command and replacing discover_tasks_modules with an implementation that suits your project. |
Either that or run |
@Bogdanp Would you be open to a PR which adds an optional |
@denizdogan sure! |
The new DRAMATIQ_IGNORED_MODULES setting has been released under version 0.7.0. |
I'm looking to replace Celery with something better and I've tried both Huey and now Dramatiq, but they both suffer from the same issue, which is that they find "too many"
tasks
modules which I don't want to use.My project depends on
django_slack
which has atasks
module which is intended for use with Celery. The module tries to importcelery
and this results in anImportError
.This is my comment on the Huey project: coleifer/huey#362 (comment)
The text was updated successfully, but these errors were encountered: