amoghrajesh commented on code in PR #60218:
URL: https://github.com/apache/airflow/pull/60218#discussion_r2694065523
##########
airflow-core/src/airflow/providers_manager.py:
##########
@@ -438,6 +439,33 @@ def __init__(self):
self._plugins_set: set[PluginInfo] = set()
self._init_airflow_core_hooks()
+ self._runtime_manager = None
+
+ def __getattribute__(self, name: str):
+ # Hacky but does the trick for now
+ runtime_properties = {
+ "hooks",
+ "taskflow_decorators",
+ "filesystem_module_names",
+ "asset_factories",
+ "asset_uri_handlers",
+ "asset_to_openlineage_converters",
+ }
Review Comment:
That's true, but I didn't want to change a lot on that front and would
rather handle it when I am getting rid of this compat shim
--
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]