This is an automated email from the ASF dual-hosted git repository.

potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new 4d6b8fd87b Further increase startup time for mssql (#39882)
4d6b8fd87b is described below

commit 4d6b8fd87bc580e2c7aad7fcefd879739c1b0079
Author: Jarek Potiuk <[email protected]>
AuthorDate: Mon May 27 19:01:33 2024 +0200

    Further increase startup time for mssql (#39882)
    
    Some of the integration tests seem to succeed after ~18s after
    creating the containers. We have startup period = 20s so increasing
    it might increase the chance of succeeding.
---
 scripts/ci/docker-compose/integration-mssql.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/scripts/ci/docker-compose/integration-mssql.yml 
b/scripts/ci/docker-compose/integration-mssql.yml
index 7f990dffef..fe16ab0d76 100644
--- a/scripts/ci/docker-compose/integration-mssql.yml
+++ b/scripts/ci/docker-compose/integration-mssql.yml
@@ -34,9 +34,9 @@ services:
     healthcheck:
       test: /opt/mssql-tools/bin/sqlcmd -S localhost,1433 -U sa -P 
"airflow123" -Q "SELECT 1" -b -o /dev/null
       interval: 10s
-      timeout: 20s
+      timeout: 50s
       retries: 20
-      start_period: 20s
+      start_period: 50s
   airflow:
     depends_on:
       mssql:

Reply via email to