You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ka...@apache.org on 2020/11/20 21:27:03 UTC

[airflow] branch v1-10-test updated: Fix the default value for VaultBackend's config_path (#12518)

This is an automated email from the ASF dual-hosted git repository.

kaxilnaik pushed a commit to branch v1-10-test
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/v1-10-test by this push:
     new 4b299e8  Fix the default value for VaultBackend's config_path (#12518)
4b299e8 is described below

commit 4b299e8d75172b148809f017367ecfb57445ca66
Author: Kaxil Naik <ka...@gmail.com>
AuthorDate: Fri Nov 20 21:24:50 2020 +0000

    Fix the default value for VaultBackend's config_path (#12518)
    
    It is `config` not `configs`
---
 airflow/contrib/secrets/hashicorp_vault.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/airflow/contrib/secrets/hashicorp_vault.py b/airflow/contrib/secrets/hashicorp_vault.py
index 536e7f9..edf48c3 100644
--- a/airflow/contrib/secrets/hashicorp_vault.py
+++ b/airflow/contrib/secrets/hashicorp_vault.py
@@ -56,7 +56,7 @@ class VaultBackend(BaseSecretsBackend, LoggingMixin):
         (default: 'variables')
     :type variables_path: str
     :param config_path: Specifies the path of the secret to read Airflow Configurations
-        (default: 'configs').
+        (default: 'config').
     :type config_path: str
     :param url: Base URL for the Vault instance being addressed.
     :type url: str