uranusjr commented on code in PR #34121:
URL: https://github.com/apache/airflow/pull/34121#discussion_r1316773471
##########
airflow/providers/cncf/kubernetes/operators/pod.py:
##########
@@ -819,7 +819,7 @@ def process_pod_deletion(self, pod: k8s.V1Pod, *,
reraise=True):
self.log.info("Deleting pod: %s", pod.metadata.name)
self.pod_manager.delete_pod(pod)
elif should_delete_pod and istio_enabled:
- self.log.info("Deleting istio-proxy sidecar inside %s: ",
pod.metadata.name)
+ self.log.info("Deleting istio-proxy sidecar inside %s:",
pod.metadata.name)
Review Comment:
```suggestion
self.log.info("Deleting istio-proxy sidecar inside: %s",
pod.metadata.name)
```
This seems to better match the format in other messages
--
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]