AutomationDev85 commented on code in PR #56875:
URL: https://github.com/apache/airflow/pull/56875#discussion_r2447414684
##########
providers/cncf/kubernetes/src/airflow/providers/cncf/kubernetes/triggers/pod.py:
##########
@@ -287,6 +291,10 @@ def hook(self) -> AsyncKubernetesHook:
cluster_context=self.cluster_context,
)
+ @cached_property
+ def pod_manager(self) -> AsyncPodManager:
+ return AsyncPodManager(async_hook=self.hook) # ,
callbacks=self.callbacks)
Review Comment:
Removed it, I just wanted to check which kind of issues do I face in the CI.
--
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]