File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
itests/src/test/java/org/apache/unomi/itests Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -88,10 +88,11 @@ public void testConcurrentHealthCheck() {
8888 }
8989 for (Future <List <HealthCheckResponse >> future : futures ) {
9090 List <HealthCheckResponse > health = future .get (10 , TimeUnit .SECONDS );
91- Assert .assertEquals (4 , health .size ());
91+ Assert .assertEquals (5 , health .size ());
9292 Assert .assertTrue (health .stream ().anyMatch (r -> r .getName ().equals ("karaf" ) && r .getStatus () == HealthCheckResponse .Status .LIVE ));
9393 Assert .assertTrue (health .stream ().anyMatch (r -> r .getName ().equals (searchEngine ) && r .getStatus () == HealthCheckResponse .Status .LIVE ));
9494 Assert .assertTrue (health .stream ().anyMatch (r -> r .getName ().equals ("unomi" ) && r .getStatus () == HealthCheckResponse .Status .LIVE ));
95+ Assert .assertTrue (health .stream ().anyMatch (r -> r .getName ().equals ("persistence" ) && r .getStatus () == HealthCheckResponse .Status .LIVE ));
9596 Assert .assertTrue (health .stream ().anyMatch (r -> r .getName ().equals ("cluster" ) && r .getStatus () == HealthCheckResponse .Status .LIVE ));
9697 }
9798 Thread .sleep (10 );
You can’t perform that action at this time.
0 commit comments