anishgirianish commented on code in PR #63491:
URL: https://github.com/apache/airflow/pull/63491#discussion_r2969133354


##########
airflow-core/src/airflow/executors/workloads/base.py:
##########
@@ -76,6 +94,23 @@ class BaseWorkloadSchema(BaseModel):
     def generate_token(sub_id: str, generator: JWTGenerator | None = None) -> 
str:
         return generator.generate({"sub": sub_id}) if generator else ""
 
+    @property
+    def queue_key(self) -> WorkloadKey:
+        """Return a unique key used to store/lookup this workload in the 
executor queue."""
+        raise NotImplementedError

Review Comment:
   Done



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