Abhishekmishra2808 commented on issue #61070: URL: https://github.com/apache/airflow/issues/61070#issuecomment-3822631039
@jason810496 I have investigated the logs and reproduced the flakiness. The `AssertionError` for `task2` was caused by a transient DNS resolution failure (`NameResolutionError`) where the Airflow components attempted to connect to the `breeze-otel-collector` before it was fully reachable on the Docker network. I've submitted a PR that introduces a `wait_for_otel_collector` health check in the `setup_class` of the integration tests. This ensures the environment is stable and the collector is reachable before the test logic executes, preventing the race condition. -- 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]
