diff options
author | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2017-02-21 14:51:34 +0100 |
---|---|---|
committer | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2017-02-24 21:08:18 +0100 |
commit | 679db32dc10eebf6e7d8cfddc44aa719696485ed (patch) | |
tree | 94b3022c04611200761432d6ab45d56584702044 /it | |
parent | f4b7d2d78416ba858d2c2f7998f3c320c95ad1e4 (diff) | |
download | sonarqube-679db32dc10eebf6e7d8cfddc44aa719696485ed.tar.gz sonarqube-679db32dc10eebf6e7d8cfddc44aa719696485ed.zip |
SONAR-8435 log "SonarQube is up" if all processes are operational
which implies:
1/ to distinguish from Monitored#getStatus() = UP and OPERATIONAL
2/ to have an option of Monitor to wait on process's status to be OPERATIONAL
3/ every Monitored implementation must return OPERATIONAL rather than UP if then don't make a distinction between the two
Diffstat (limited to 'it')
-rw-r--r-- | it/it-tests/src/test/java/it/serverSystem/ClusterTest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/it/it-tests/src/test/java/it/serverSystem/ClusterTest.java b/it/it-tests/src/test/java/it/serverSystem/ClusterTest.java index c9e37f83611..56ecaf34183 100644 --- a/it/it-tests/src/test/java/it/serverSystem/ClusterTest.java +++ b/it/it-tests/src/test/java/it/serverSystem/ClusterTest.java @@ -107,7 +107,7 @@ public class ClusterTest { .setServerProperty("sonar.cluster.ce.disabled", "true") // override the default watcher provided by Orchestrator // which waits for Compute Engine to be up - .setStartupLogWatcher(log -> log.contains("Process[web] is up")) + .setStartupLogWatcher(log -> log.contains("SonarQube is up")) .build(); web.start(); |