Repository: incubator-airflow Updated Branches: refs/heads/v1-10-test 9b0136772 -> f65507fcd
[AIRFLOW-2710] Clarify fernet key value in documentation Closes #3574 from padwasabimasala/AIRFLOW-2710 (cherry picked from commit 6b7645261b5df69b01936838f38f7f701a667518) Signed-off-by: Bolke de Bruin <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/incubator-airflow/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-airflow/commit/f65507fc Tree: http://git-wip-us.apache.org/repos/asf/incubator-airflow/tree/f65507fc Diff: http://git-wip-us.apache.org/repos/asf/incubator-airflow/diff/f65507fc Branch: refs/heads/v1-10-test Commit: f65507fcd4632c9050d10e0911e00e8f5c6557b1 Parents: 9b01367 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:53:07 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/f65507fc/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
