potiuk commented on code in PR #29055:
URL: https://github.com/apache/airflow/pull/29055#discussion_r1277960337


##########
airflow/executors/base_executor.py:
##########
@@ -479,3 +479,12 @@ def send_callback(self, request: CallbackRequest) -> None:
         if not self.callback_sink:
             raise ValueError("Callback sink is not ready.")
         self.callback_sink.send(request)
+
+    @staticmethod
+    def get_cli_commands() -> list:

Review Comment:
   I guess list[GroupCommand] or list[GroupCommand]. This is part of the public 
API, I think not specifying this leaves a lot of room for interpretation, what 
it could be. I think it only makes sense that executor adds the whole "Group" 
rather than single command (very similar as in case of config contributed for 
provider where we decided only whole section can be contributed by provider).



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