kaxil commented on code in PR #53058: URL: https://github.com/apache/airflow/pull/53058#discussion_r2194662126
########## task-sdk/src/airflow/sdk/api/datamodels/_generated.py: ########## @@ -519,7 +519,7 @@ class TIRunContext(BaseModel): next_method: Annotated[str | None, Field(title="Next Method")] = None next_kwargs: Annotated[dict[str, Any] | str | None, Field(title="Next Kwargs")] = None xcom_keys_to_clear: Annotated[list[str] | None, Field(title="Xcom Keys To Clear")] = None - should_retry: Annotated[bool, Field(title="Should Retry")] + should_retry: Annotated[bool | None, Field(title="Should Retry")] = False Review Comment: This is auto-generated and there are more cases where defaults have `None` type auto-added. Will handle that separately -- 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