amoghrajesh commented on code in PR #45924: URL: https://github.com/apache/airflow/pull/45924#discussion_r1926821670
########## task_sdk/src/airflow/sdk/api/client.py: ########## @@ -136,6 +137,11 @@ def finish(self, id: uuid.UUID, state: TerminalTIState, when: datetime): body = TITerminalStatePayload(end_date=when, state=TerminalTIState(state)) self.client.patch(f"task-instances/{id}/state", content=body.model_dump_json()) + def succeed(self, id: uuid.UUID, when: datetime, task_outlets, outlet_events): + """Tell the API server that this TI has to succeed.""" Review Comment: Right, it has succeeded! Not going to succeed. -- 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: commits-unsubscr...@airflow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org