jscheffl commented on code in PR #64556:
URL: https://github.com/apache/airflow/pull/64556#discussion_r3367146775


##########
providers/edge3/src/airflow/providers/edge3/worker_api/routes/jobs.py:
##########
@@ -80,7 +85,8 @@ def fetch(
     )
     if body.queues:
         query = query.where(EdgeJobModel.queue.in_(body.queues))
-    query = query.where(EdgeJobModel.team_name == body.team_name)
+    if worker.team_name is not None:
+        query = query.where(EdgeJobModel.team_name == worker.team_name)

Review Comment:
   Accepted known open point.



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

Reply via email to