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


##########
airflow-core/src/airflow/executors/workloads/base.py:
##########
@@ -76,6 +93,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):

Review Comment:
   What would be the type of result? `str`? Can you please add a type 
definition?
   ```suggestion
       def queue_key(self) -> str:
   ```



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