Skip to content

Commit

Permalink
fix: bug in __lib.py due to mishandling response from handle_pod_over…
Browse files Browse the repository at this point in the history
…lap (#695)
  • Loading branch information
irainia authored Jan 3, 2023
1 parent e776fb4 commit 52918d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/scheduler/airflow/__lib.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ def execute(self, context):

if len(pod_list.items) == 1:
try_numbers_match = self._try_numbers_match(context, pod_list.items[0])
final_state, result = self.handle_pod_overlap(labels, try_numbers_match, launcher, pod_list.items[0])
final_state, _, result = self.handle_pod_overlap(labels, try_numbers_match, launcher, pod_list.items[0])
else:
final_state, _, result = self.create_new_pod_for_operator(labels, launcher)

Expand Down

0 comments on commit 52918d1

Please sign in to comment.