Are celery threads independent?
Are they independent in a way that each thread will spawn a new process and won't share resources? -- https://mail.python.org/mailman/listinfo/python-list
Celery + Django logging and RotateFileHandler
I have a Django project setup with Celery and a RotatingFileHandler setting like shown below: LOGGING = { 'version': 1, 'handlers': { 'console':{ 'class':'logging.StreamHandler', 'stream': sys.stdout, }, 'cele