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

commit e57798b4ddc3a1321cb1b6b41e4c9c1d61303760
Author: Kaxil Naik <[email protected]>
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

Reply via email to