This is an automated email from the ASF dual-hosted git repository.
kaxilnaik pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/master by this push:
new 36a9b0f Fix the default value for VaultBackend's config_path (#12518)
36a9b0f is described below
commit 36a9b0f48baf4a8ef8fc02a450a279948a8c0f02
Author: Kaxil Naik <[email protected]>
AuthorDate: Fri Nov 20 21:52:28 2020 +0000
Fix the default value for VaultBackend's config_path (#12518)
It is `config` not `configs`
---
airflow/providers/hashicorp/secrets/vault.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/airflow/providers/hashicorp/secrets/vault.py
b/airflow/providers/hashicorp/secrets/vault.py
index 776d8b9..f745c83 100644
--- a/airflow/providers/hashicorp/secrets/vault.py
+++ b/airflow/providers/hashicorp/secrets/vault.py
@@ -51,7 +51,7 @@ class VaultBackend(BaseSecretsBackend, LoggingMixin):
(default: 'variables'). If set to None (null), requests for variables
will not be sent to Vault.
:type variables_path: str
:param config_path: Specifies the path of the secret to read Airflow
Configurations
- (default: 'configs'). If set to None (null), requests for
configurations will not be sent to Vault.
+ (default: 'config'). If set to None (null), requests for
configurations will not be sent to Vault.
:type config_path: str
:param url: Base URL for the Vault instance being addressed.
:type url: str