mjpieters commented on a change in pull request #10770:
URL: https://github.com/apache/airflow/pull/10770#discussion_r491433284
##########
File path: airflow/plugins_manager.py
##########
@@ -150,6 +152,8 @@ def load_entrypoint_plugins():
plugin_instance = plugin_class()
if callable(getattr(plugin_instance, 'on_load', None)):
plugin_instance.on_load()
+ plugin_instance.plugin_source = "entrypoint_plugin"
+ plugin_instance.plugin_path = str(entry_point.dist)
Review comment:
Can we include `str(entry_point)` somehow? It was part of my original FR.
A given distribution can contain *multiple* plugins, `str(entry_point)`
tells you which one.
----------------------------------------------------------------
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]