Add logs before and after waiting for Authelia service in suites.

pull/447/head
Clement Michaud 2019-11-15 22:10:12 +01:00 committed by Clément Michaud
parent a991379a74
commit fc099221f7
1 changed files with 10 additions and 1 deletions

View File

@ -31,6 +31,8 @@ func waitUntilServiceLogDetected(
} }
func waitUntilAutheliaIsReady(dockerEnvironment *DockerEnvironment) error { func waitUntilAutheliaIsReady(dockerEnvironment *DockerEnvironment) error {
log.Info("Waiting for Authelia to be ready...")
err := waitUntilServiceLogDetected( err := waitUntilServiceLogDetected(
5*time.Second, 5*time.Second,
90*time.Second, 90*time.Second,
@ -42,10 +44,17 @@ func waitUntilAutheliaIsReady(dockerEnvironment *DockerEnvironment) error {
return err return err
} }
return waitUntilServiceLogDetected( err = waitUntilServiceLogDetected(
5*time.Second, 5*time.Second,
90*time.Second, 90*time.Second,
dockerEnvironment, dockerEnvironment,
"authelia-frontend", "authelia-frontend",
"You can now view authelia-portal in the browser.") "You can now view authelia-portal in the browser.")
if err != nil {
return err
}
log.Info("Authelia is now ready!")
return nil
} }