o-nikolas commented on code in PR #29055:
URL: https://github.com/apache/airflow/pull/29055#discussion_r1269833340
##########
airflow/executors/celery_kubernetes_executor.py:
##########
@@ -231,3 +231,7 @@ 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:
+ return []
Review Comment:
Actually, I'll include both celery and kube. I think it's safe to assume
that dependencies for both should be available even if this code lives within
one provider, but it does create a cross provider dependency (but I think by
virtue of using this executor the user has accepted that).
--
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]