Skip to content

Commit 481daee

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 010924a commit 481daee

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
@@ -342,10 +342,10 @@ certs and keys.
342342
.. code-block:: bash
343343
344344
[celery]
345-
CELERY_SSL_ACTIVE = True
346-
CELERY_SSL_KEY = <path to key>
347-
CELERY_SSL_CERT = <path to cert>
348-
CELERY_SSL_CACERT = <path to cacert>
345+
ssl_active = True
346+
ssl_key = <path to key>
347+
ssl_cert = <path to cert>
348+
ssl_cacert = <path to cacert>
349349
350350
Impersonation
351351
-------------

0 commit comments

Comments
 (0)