Skip to content

Commit 38680e2

Browse files
XD-DENGashb
authored andcommitted
[AIRFLOW-3127] Fix out-dated doc for Celery SSL (#3967)
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.
1 parent be28af6 commit 38680e2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/security.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -344,10 +344,10 @@ certs and keys.
344344
.. code-block:: bash
345345
346346
[celery]
347-
CELERY_SSL_ACTIVE = True
348-
CELERY_SSL_KEY = <path to key>
349-
CELERY_SSL_CERT = <path to cert>
350-
CELERY_SSL_CACERT = <path to cacert>
347+
ssl_active = True
348+
ssl_key = <path to key>
349+
ssl_cert = <path to cert>
350+
ssl_cacert = <path to cacert>
351351
352352
Impersonation
353353
-------------

0 commit comments

Comments
 (0)