Are celery threads independent?

2017-06-03 Thread Heron Rossi
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

2017-06-01 Thread Heron Rossi
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