Celery Received unregistered task of type (run example)

后端 未结 30 1865
旧时难觅i
旧时难觅i 2020-11-28 04:42

I\'m trying to run example from Celery documentation.

I run: celeryd --loglevel=INFO

/usr/local/lib/python2.7/dist-packages/celery/loade         


        
30条回答
  •  忘掉有多难
    2020-11-28 05:10

    In my case the error was because one container created files in a folder that were mounted on the host file-system with docker-compose.

    I just had to do remove the files created by the container on the host system and I was able to launch my project again.

    sudo rm -Rf foldername

    (I had to use sudo because the files were owned by the root user)

    Docker version: 18.03.1

提交回复
热议问题