instance = TestingUtil.extractGlobalComponent(manager1, ClusterTopologyManager.class);
}
@Override
public org.infinispan.topology.CacheStatusResponse handleJoin(String cacheName, Address joiner, CacheJoinInfo joinInfo, int viewId) throws Exception {
CacheStatusResponse result = instance.handleJoin(cacheName, joiner, joinInfo, viewId);
// Allow the joiner to receive some commands before the initial cache topology
log.tracef("Delaying join response");
Thread.sleep(500);
return result;