amoghrajesh commented on code in PR #45106:
URL: https://github.com/apache/airflow/pull/45106#discussion_r1898458661
##########
airflow/api_fastapi/execution_api/routes/task_instances.py:
##########
@@ -199,17 +199,22 @@ def ti_update_state(
)
# We exclude_unset to avoid updating fields that are not set in the payload
- data = ti_patch_payload.model_dump(exclude_unset=True)
+ # We do not need to deserialize "should_retry" -- it is used for dynamic
decision-making within failed state
+ data = ti_patch_payload.model_dump(exclude_unset=True,
exclude={"should_retry"})
query = update(TI).where(TI.id == ti_id_str).values(data)
if isinstance(ti_patch_payload, TITerminalStatePayload):
query = TI.duration_expression_update(ti_patch_payload.end_date,
query, session.bind)
query = query.values(state=ti_patch_payload.state)
+ updated_state = ti_patch_payload.state
if ti_patch_payload.state == State.FAILED:
# clear the next_method and next_kwargs
query = query.values(next_method=None, next_kwargs=None)
- updated_state = State.FAILED
+ task_instance = session.get(TI, ti_id_str)
+ if _is_eligible_to_retry(task_instance,
ti_patch_payload.should_retry):
Review Comment:
However, I will get the max_tries and try_number from L188 and pass it down.
--
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]