uranusjr commented on code in PR #39924:
URL: https://github.com/apache/airflow/pull/39924#discussion_r1627149915


##########
airflow/providers/cncf/kubernetes/executors/kubernetes_executor_utils.py:
##########
@@ -250,10 +249,17 @@ def process_status(
                                 and 
container_status_state["waiting"]["message"] == "pull QPS exceeded"
                             ):
                                 continue
+                            self.log.error("Event: %s has container %s with 
fatal reason %s",
+                                    pod_name,
+                                    container_status["name"],
+                                    container_status_state["waiting"]["reason"]
+                            )

Review Comment:
   ```suggestion
                               self.log.error(
                                   "Event: %s has container %s with fatal 
reason %s",
                                   pod_name,
                                   container_status["name"],
                                   container_status_state["waiting"]["reason"],
                               )
   ```



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