This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 072c63b539 Fix typo in providers_manager.py (#40157)
072c63b539 is described below
commit 072c63b5397b1333bdb6fd8ed1bf58f49366e8d1
Author: Kacper Muda <[email protected]>
AuthorDate: Mon Jun 10 15:46:58 2024 +0200
Fix typo in providers_manager.py (#40157)
Signed-off-by: Kacper Muda <[email protected]>
---
airflow/providers_manager.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/airflow/providers_manager.py b/airflow/providers_manager.py
index 244a1c4710..ec424e1489 100644
--- a/airflow/providers_manager.py
+++ b/airflow/providers_manager.py
@@ -523,7 +523,7 @@ class ProvidersManager(LoggingMixin, metaclass=Singleton):
self._discover_filesystems()
@provider_info_cache("dataset_uris")
- def initializa_providers_dataset_uri_handlers(self):
+ def initialize_providers_dataset_uri_handlers(self):
"""Lazy initialization of provider dataset URI handlers."""
self.initialize_providers_list()
self._discover_dataset_uri_handlers()
@@ -1291,7 +1291,7 @@ class ProvidersManager(LoggingMixin, metaclass=Singleton):
@property
def dataset_uri_handlers(self) -> dict[str, Callable[[SplitResult],
SplitResult]]:
- self.initializa_providers_dataset_uri_handlers()
+ self.initialize_providers_dataset_uri_handlers()
return self._dataset_uri_handlers
@property