vincbeck commented on code in PR #73295: URL: https://github.com/apache/airflow/pull/73295#discussion_r4096830808
########## airflow-core/src/airflow/cli/commands/dag_processor_command.py: ########## @@ -33,12 +34,32 @@ log = logging.getLogger(__name__) +def _get_team_name(bundle_names: list[str] | None) -> str | None: + """ + Return the team this Dag processor serves, or None when it serves no single team. + + A bundle belongs to at most one team, so the processor is team-scoped only when every + bundle it parses belongs to the same team. A processor parsing all bundles, bundles of + several teams, or a team-less bundle alongside a team's own is not team-scoped. + """ + if not bundle_names: + return None + + team_names = DagBundleModel.get_team_names(bundle_names) Review Comment: Good call -- 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]
