Skip to content

Commit ab6c667

Browse files
author
tmiddleton
committed
Enh 38282554 - [38277648->25.09] GraalVM Add Coherence GraalVM native feature
[git-p4: depot-paths = "//dev/coherence-ce/main/": change = 118321]
1 parent f785afe commit ab6c667

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

prj/test/functional/persistence/src/main/java/persistence/AbstractRollingPersistenceTests.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
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.
@@ -17,6 +17,7 @@
1717
import com.tangosol.io.FileHelper;
1818

1919
import com.tangosol.net.CacheFactory;
20+
import com.tangosol.net.CacheService;
2021
import com.tangosol.net.Cluster;
2122
import com.tangosol.net.ConfigurableCacheFactory;
2223
import 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

0 commit comments

Comments
 (0)