ashb commented on a change in pull request #12069:
URL: https://github.com/apache/airflow/pull/12069#discussion_r516834658



##########
File path: airflow/plugins_manager.py
##########
@@ -208,9 +287,9 @@ def make_module(name, objects):
 
 for p in plugins:
     operators_modules.append(
-        make_module('airflow.operators.' + p.name, p.operators + p.sensors))
+        make_deprecated_module('airflow.operators.' + p.name, p.operators + 
p.sensors, p))
     sensors_modules.append(
-        make_module('airflow.sensors.' + p.name, p.sensors)
+        make_deprecated_module('airflow.sensors.' + p.name, p.sensors, p)
     )
     hooks_modules.append(make_module('airflow.hooks.' + p.name, p.hooks))

Review comment:
       Separate ticket for hooks (cos it maybe makes sense to register them, if 
not import them from hooks) #9506 and #9507
   




----------------------------------------------------------------
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.

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to