dstandish commented on code in PR #44981:
URL: https://github.com/apache/airflow/pull/44981#discussion_r1888749416
##########
airflow/utils/state.py:
##########
@@ -39,6 +39,7 @@ class TerminalTIState(str, Enum):
FAILED = "failed"
SKIPPED = "skipped" # A user can raise a AirflowSkipException from a task
& it will be marked as skipped
REMOVED = "removed"
+ UP_FOR_RETRY = "up_for_retry" # We do not need to do anything actionable
for this state, hence it is a terminal state.
Review Comment:
"terminal state" means the task is done; up for retry does not really feel
like a terminal state.... since it's going to be retried....
--
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]