From a9c31480cba2c2932f7e5201829d7daa640f6a5b Mon Sep 17 00:00:00 2001 From: XD-DENG Date: Fri, 28 Sep 2018 16:25:22 +0800 Subject: [PATCH] [AIRFLOW-3127] Fix out-dated doc for Celery SSL Now in `airflow.cfg`, for Celery-SSL, the item names are "ssl_active", "ssl_key", "ssl_cert", and "ssl_cacert". (since PR https://github.com/apache/incubator-airflow/pull/2806/files) But in the documentation https://airflow.incubator.apache.org/security.html?highlight=celery or https://github.com/apache/incubator-airflow/blob/master/docs/security.rst, it's "CELERY_SSL_ACTIVE", "CELERY_SSL_KEY", "CELERY_SSL_CERT", and "CELERY_SSL_CACERT", which is out-dated and may confuse readers. --- docs/security.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/security.rst b/docs/security.rst index 60fe160404786..89b5605daabec 100644 --- a/docs/security.rst +++ b/docs/security.rst @@ -342,10 +342,10 @@ certs and keys. .. code-block:: bash [celery] - CELERY_SSL_ACTIVE = True - CELERY_SSL_KEY = - CELERY_SSL_CERT = - CELERY_SSL_CACERT = + ssl_active = True + ssl_key = + ssl_cert = + ssl_cacert = Impersonation -------------