amoghrajesh commented on code in PR #45106:
URL: https://github.com/apache/airflow/pull/45106#discussion_r1899331852
##########
task_sdk/src/airflow/sdk/api/datamodels/_generated.py:
##########
@@ -126,9 +126,12 @@ class TerminalTIState(str, Enum):
"""
SUCCESS = "success"
- FAILED = "failed"
+ FAILED = "failed" # This state indicates that we attempt to retry.
SKIPPED = "skipped"
REMOVED = "removed"
+ FAIL_WITHOUT_RETRY = (
+ "fail_without_retry" # This state is useful for when we want to
terminate a task, without retrying.
+ )
Review Comment:
Right, removed it
--
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]