File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
prj/test/functional/persistence/src/main/java/persistence Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 11/*
2- * Copyright (c) 2000, 2024 , Oracle and/or its affiliates.
2+ * Copyright (c) 2000, 2025 , Oracle and/or its affiliates.
33 *
44 * Licensed under the Universal Permissive License v 1.0 as shown at
55 * https://oss.oracle.com/licenses/upl.
1717import com .tangosol .io .FileHelper ;
1818
1919import com .tangosol .net .CacheFactory ;
20+ import com .tangosol .net .CacheService ;
2021import com .tangosol .net .Cluster ;
2122import com .tangosol .net .ConfigurableCacheFactory ;
2223import com .tangosol .net .DistributedCacheService ;
@@ -270,6 +271,9 @@ protected void doRecoveryTest()
270271 }
271272
272273 NamedCache cache = getNamedCache ("rolling-" + sTestPrefix + "data" );
274+ CacheService cacheService = cache .getCacheService ();
275+ Eventually .assertDeferred (() -> cacheService .getInfo ().getServiceMembers ().size (), is (cServers + 1 ));
276+
273277 cache .truncate ();
274278 Eventually .assertDeferred (() -> cache .size (), is (0 ));
275279
You can’t perform that action at this time.
0 commit comments