ashb commented on code in PR #62645:
URL: https://github.com/apache/airflow/pull/62645#discussion_r3014810653


##########
airflow-core/src/airflow/executors/workloads/task.py:
##########
@@ -73,6 +74,24 @@ class ExecuteTask(BaseDagBundleWorkload):
 
     type: Literal["ExecuteTask"] = Field(init=False, default="ExecuteTask")
 
+    @property
+    def key(self) -> TaskInstanceKey:
+        """Return the TaskInstanceKey for this workload."""
+        return self.ti.key

Review Comment:
   I would have expected this to be the uuid -- where is this used?
   ```suggestion
           return self.ti.id
   ```



-- 
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]

Reply via email to