anasatzemoso commented on code in PR #55262: URL: https://github.com/apache/airflow/pull/55262#discussion_r2332125936
########## airflow-core/src/airflow/plugins_manager.py: ########## @@ -635,6 +637,9 @@ def get_plugin_info(attrs_to_dump: Iterable[str] | None = None) -> list[dict[str plugins_info = [] if plugins: for plugin in plugins: + if plugin.name in import_errors: + log.warning("Skipping plugin %s because it has an invalid 'url_prefix'", plugin.name) + continue Review Comment: Reverted the changes. -- 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: commits-unsubscr...@airflow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org