dmateusp commented on issue #12136:
URL: https://github.com/apache/airflow/issues/12136#issuecomment-752928898


   hey @yamrzou I know it's been some time since you originally opened that 
issue! We run Airflow 1.10.10 and noticed the same, we have been getting around 
it by modifying the containers to frequently log.
   
   Now I'm trying to actually fix the issue but I'm having a hard time 
reproducing it with a simple task:
   
   ```python
       bash_echo_1 = KubernetesPodOperator(
           task_id="bash_echo_1",
           image="bash:4.4",
           name="bash-echo-1",
           cmds=[
               "bash",
               "-c",
               "while true; do sleep 5; done;",
           ],
           do_xcom_push=True,
           get_logs=True,
       )
   ``` 
   
   Do you have a simple example that reproduces it on your end?


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

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to