Repository: incubator-airflow Updated Branches: refs/heads/master 32db62ed0 -> 6b7645261
[AIRFLOW-2710] Clarify fernet key value in documentation Closes #3574 from padwasabimasala/AIRFLOW-2710 Project: http://git-wip-us.apache.org/repos/asf/incubator-airflow/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-airflow/commit/6b764526 Tree: http://git-wip-us.apache.org/repos/asf/incubator-airflow/tree/6b764526 Diff: http://git-wip-us.apache.org/repos/asf/incubator-airflow/diff/6b764526 Branch: refs/heads/master Commit: 6b7645261b5df69b01936838f38f7f701a667518 Parents: 32db62e Author: Matthew Thorley <[email protected]> Authored: Sun Jul 8 20:52:51 2018 +0200 Committer: Bolke de Bruin <[email protected]> Committed: Sun Jul 8 20:52:51 2018 +0200 ---------------------------------------------------------------------- docs/howto/secure-connections.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-airflow/blob/6b764526/docs/howto/secure-connections.rst ---------------------------------------------------------------------- diff --git a/docs/howto/secure-connections.rst b/docs/howto/secure-connections.rst index b9c1fa1..f9e252c 100644 --- a/docs/howto/secure-connections.rst +++ b/docs/howto/secure-connections.rst @@ -16,7 +16,7 @@ connections by following steps below: from cryptography.fernet import Fernet fernet_key= Fernet.generate_key() - print(fernet_key) # your fernet_key, keep it in secured place! + print(fernet_key.decode()) # your fernet_key, keep it in secured place! 3. Replace ``airflow.cfg`` fernet_key value with the one from step 2. Alternatively, you can store your fernet_key in OS environment variable. You
