edwardwang888 commented on a change in pull request #17304:
URL: https://github.com/apache/airflow/pull/17304#discussion_r697797596
##########
File path: airflow/__init__.py
##########
@@ -74,11 +74,13 @@ def __getattr__(name):
if not settings.LAZY_LOAD_PROVIDERS:
from airflow import providers_manager
- providers_manager.ProvidersManager().initialize_providers_manager()
+ manager = providers_manager.ProvidersManager()
+ manager.initialize_providers_list()
+ manager.initialize_providers_hooks()
+ manager.initialize_providers_extra_links()
# This is never executed, but tricks static analyzers (PyDev, PyCharm,)
-# into knowing the types of these symbols, and what
Review comment:
@potiuk Was this line meant to be removed?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]