japrogramer
japrogramer
you need this https://rocm.docs.amd.com/en/docs-6.0.0/about/release-notes.html and numpy
@YellowRoseCx Thanks 🙌, I just ordered an AMD GPU. Will test soon.
By setting A debug point in wsgi, I was able to determine that the bug happens when scheduling a task. Because I often schedule tasks in signals it breaks my...
FIXED: by making this changes. As it turns out the new celery needs a task scheduled as soon as the app is configured. without scheduling the dummy task in app.ready...
@xirdneh I moved auto discover out of `def ready` and scheduled a task via delay in it's place. without scheduling the task the rest of my tasks scheduling hangs forever...
if i remove the dummy task, all .delay calls take forever. The app doesn't freeze when I try to schedule a periodic task via the connect at least when the...
``` celery -A medicalboard.taskapp.setup:app worker --logfile=$HOME/celerylog & celery -A medicalboard.taskapp.setup:app beat --logfile=$HOME/celerybeatlog --loglevel=debug & ``` But note this processes were already running in the background. The only change between a...
no, Im running via gunicorn. The reason Admin login request was timing out was because I had a function attached to the signin signal emitted by django, In that signal...
@xinydev I can't test that, I have to use gunicorn to reach my app via reverse proxy. but because using ./manage.py shell, and scheduling a task also stalled forever, I...
Here are the inspects when I remove the dummy task. and the forever stalling behavior happens again. ``` (.env) ubuntu@ip:~/sixnexus$ celery -A medicalboard.taskapp.setup:app inspect scheduled -> celery@ip: OK - empty...