pankajastro commented on code in PR #37546:
URL: https://github.com/apache/airflow/pull/37546#discussion_r1494846167


##########
airflow/providers/cncf/kubernetes/triggers/pod.py:
##########
@@ -263,6 +264,7 @@ async def _wait_for_container_completion(self) -> 
TriggerEvent:
                         "name": self.pod_name,
                     }
                 )
+            self.log.info("Sleeping for %s seconds.", self.poll_interval)

Review Comment:
   shall we combine both log statements something like below?
   ```python
    self.log.info("Container state is %s. Sleeping for %s seconds.", 
container_state , self.poll_interval)
   ```  
   



-- 
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: commits-unsubscr...@airflow.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to