Taragolis opened a new pull request, #28252:
URL: https://github.com/apache/airflow/pull/28252

   Follow up: #28249
   
   ```text
     self = <tests.cli.commands.test_webserver_command.TestCliWebServer object 
at 0x7f3773510730>
     pidfile = '/tmp/gunicornpid0e9jv/pidflow-webserver.pid'
     
         def _wait_pidfile(self, pidfile):
             start_time = time.monotonic()
             while True:
                 try:
                     with open(pidfile) as file:
                         return int(file.read())
                 except Exception:
                     if start_time - time.monotonic() > 60:
                         raise
     >               time.sleep(1)
     E               Failed: Timeout >60.0s
     
     tests/cli/commands/test_webserver_command.py:282: Failed
   ```


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