jscheffl commented on code in PR #61646:
URL: https://github.com/apache/airflow/pull/61646#discussion_r2779680534
##########
providers/edge3/src/airflow/providers/edge3/executors/edge_executor.py:
##########
@@ -262,7 +290,11 @@ def _purge_jobs(self, session: Session) -> bool:
]
)
)
- ).all()
+ )
+ # Filter by managed queues for multi-team isolation
+ if self._managed_queues:
+ query = query.where(EdgeJobModel.queue.in_(self._managed_queues))
Review Comment:
Probably same here and all parts above
--
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]