amoghrajesh commented on code in PR #47061:
URL: https://github.com/apache/airflow/pull/47061#discussion_r1969968480
##########
airflow/api_fastapi/execution_api/datamodels/taskinstance.py:
##########
@@ -252,6 +258,15 @@ class TIRunContext(BaseModel):
upstream_map_indexes: dict[str, int] | None = None
+ next_method: str | None = None
+ """Method to call. Set when task resumes from a trigger."""
+ next_kwargs: dict[str, Any] | str | None = None
+ """
+ Args to pass to ``next_method``.
+
+ Can either be a "decorated" dict, or a string encrypted with the shared
Fernet key.
Review Comment:
Whats a decorated dict?
--
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]