Skip to content

Commit c0424ef

Browse files
authored
fix: bug in __lib.py due to mishandling response from handle_pod_overlap (#693)
1 parent bcce5c2 commit c0424ef

File tree

1 file changed

+1
-1
lines changed
  • ext/scheduler/airflow2/resources

1 file changed

+1
-1
lines changed

ext/scheduler/airflow2/resources/__lib.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ def execute(self, context):
200200

201201
if len(pod_list.items) == 1:
202202
try_numbers_match = self._try_numbers_match(context, pod_list.items[0])
203-
final_state, result = self.handle_pod_overlap(labels, try_numbers_match, launcher, pod_list.items[0])
203+
final_state, _, result = self.handle_pod_overlap(labels, try_numbers_match, launcher, pod_list.items[0])
204204
else:
205205
final_state, _, result = self.create_new_pod_for_operator(labels, launcher)
206206

0 commit comments

Comments
 (0)