amoghrajesh commented on code in PR #29929:
URL: https://github.com/apache/airflow/pull/29929#discussion_r1133185569


##########
airflow/executors/kubernetes_executor.py:
##########
@@ -347,7 +356,12 @@ def run_next(self, next_job: KubernetesJobType) -> None:
         )
         # Reconcile the pod generated by the Operator and the Pod
         # generated by the .cfg file
-        self.log.info("Creating kubernetes pod for job is %s, with pod name 
%s", key, pod.metadata.name)
+        self.log.info(
+            "Creating kubernetes pod for job is %s, with pod name %s, 
annotations: %s",
+            key,
+            pod.metadata.name,
+            annotations_to_str(pod.metadata.annotations),
+        )

Review Comment:
   Thanks for the feedback. Added these in case the `TaskInstanceKey` changes 
someday, for future proof.
   Anyways, removed this



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