mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-21 07:49:14 +00:00
When running with Elasticsearch 9, the recently added test that checks connectivity using SSL is flaky on CI. When the test fails, it does so because Docker Compose reports that the container is unhealthy when running docker compose up. One possibility is that this is due to the container taking too long to reach a healthy state. This commit attempts to confirm that theory and hopefully address the problem by configuring a wait timeout of 120 seconds for the up command. See gh-49385