[Django]-Django Celery Redis

7👍

i never used option broker_use_ssl, can you try delete this option and try again

app = Celery('myproj')

or
update

 Celery('myproj',
     broker_use_ssl = {
        'ssl_cert_reqs': ssl.CERT_NONE
     },
     redis_backend_use_ssl = {
        'ssl_cert_reqs': ssl.CERT_NONE
     }
)

Leave a comment