@@ -136,10 +136,10 @@ class CliAppTest < CliTestCase
136136 . returns ( "running" ) . at_least_once # workers health check
137137
138138 run_command ( "boot" , config : :with_roles , host : nil ) . tap do |output |
139- assert_match "Waiting at web barrier (1.1.1.3)..." , output
140- assert_match "Waiting at web barrier (1.1.1.4)..." , output
141- assert_match "Barrier opened (1.1.1.3)" , output
142- assert_match "Barrier opened (1.1.1.4)" , output
139+ assert_match "Waiting for a healthy web container (1.1.1.3)..." , output
140+ assert_match "Waiting for a healthy web container (1.1.1.4)..." , output
141+ assert_match "First web container is healthy, continuing (1.1.1.3)" , output
142+ assert_match "First web container is healthy, continuing (1.1.1.4)" , output
143143 end
144144 end
145145
@@ -160,10 +160,10 @@ class CliAppTest < CliTestCase
160160
161161 stderred do
162162 run_command ( "boot" , config : :with_roles , host : nil , allow_execute_error : true ) . tap do |output |
163- assert_match "Waiting at web barrier (1.1.1.3)..." , output
164- assert_match "Waiting at web barrier (1.1.1.4)..." , output
165- assert_match "Barrier closed, shutting down new container (1.1.1.3)... " , output
166- assert_match "Barrier closed, shutting down new container (1.1.1.4)... " , output
163+ assert_match "Waiting for a healthy web container (1.1.1.3)..." , output
164+ assert_match "Waiting for a healthy web container (1.1.1.4)..." , output
165+ assert_match "First web container is unhealthy, stopping (1.1.1.3)" , output
166+ assert_match "First web container is unhealthy, stopping (1.1.1.4)" , output
167167 assert_match "Running docker container ls --all --filter name=^app-web-latest$ --quiet | xargs docker stop on 1.1.1.1" , output
168168 assert_match "Running docker container ls --all --filter name=^app-web-latest$ --quiet | xargs docker stop on 1.1.1.2" , output
169169 assert_match "Running docker container ls --all --filter name=^app-workers-latest$ --quiet | xargs docker stop on 1.1.1.3" , output
0 commit comments