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
Today, I noticed that there is some conflict between django-debug-toolbar and huey.
django-debug-toolbar
huey
In general, when you run manage.py run_huey you get immeditately some output like
manage.py run_huey
[2018-08-17 17:47:25,040] INFO:huey.consumer:MainThread:Huey consumer started with 1 thread, PID 2389 [2018-08-17 17:47:25,041] INFO:huey.consumer:MainThread:Scheduler runs every 1 second(s). [2018-08-17 17:47:25,041] INFO:huey.consumer:MainThread:Periodic tasks are enabled. [2018-08-17 17:47:25,041] INFO:huey.consumer:MainThread:UTC is enabled. ...
Now, add this to your settings file:
INSTALLED_APPS += [ 'debug_toolbar', ] MIDDLEWARE += ['debug_toolbar.middleware.DebugToolbarMiddleware', ]
And suddenly when you run manage.py run_huey again, you do not get any output at all:
python manage.py run_huey
Django 2.1 Python 3.7 Huey 1.10.2 Django Debug Toolbar 1.9.1
The text was updated successfully, but these errors were encountered:
Turns out there is an issue already: #695 (comment)
Sorry, something went wrong.
No branches or pull requests
Today, I noticed that there is some conflict between
django-debug-toolbar
andhuey
.In general, when you run
manage.py run_huey
you get immeditately some output likeNow, add this to your settings file:
And suddenly when you run
manage.py run_huey
again, you do not get any output at all:System information
Django 2.1
Python 3.7
Huey 1.10.2
Django Debug Toolbar 1.9.1
The text was updated successfully, but these errors were encountered: