We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a31e9e6 commit 5e992c4Copy full SHA for 5e992c4
services/storage/src/simcore_service_storage/modules/celery/_common.py
@@ -18,6 +18,7 @@ def create_app(celery_settings: CelerySettings) -> Celery:
18
),
19
)
20
app.conf.broker_connection_retry_on_startup = True
21
+ # NOTE: disable SSL cert validation (https://github.com/ITISFoundation/osparc-simcore/pull/7407)
22
app.conf.redis_backend_use_ssl = {"ssl_cert_reqs": ssl.CERT_NONE}
23
app.conf.result_expires = celery_settings.CELERY_RESULT_EXPIRES
24
app.conf.result_extended = True # original args are included in the results
0 commit comments