Skip to content

Commit

Permalink
ISPN-8631 GetAllCacheNotFoundResponseTest.createBeforeClass fails
Browse files Browse the repository at this point in the history
  • Loading branch information
danberindei authored and Gustavo Fernandes committed Dec 15, 2017
1 parent 3da0acd commit 16d0d85
Showing 1 changed file with 1 addition and 2 deletions.
Expand Up @@ -359,15 +359,14 @@ protected <K, V> List<Cache<K, V>> createClusteredCaches(int numMembersInCluster
if (cacheNames.length == 0) {
Cache<K, V> cache = cm.getCache();
caches.add(cache);
waitForClusterToForm();
} else {
for (String cacheName : cacheNames) {
cm.defineConfiguration(cacheName, defaultConfigBuilder.build());
caches.add(cm.getCache(cacheName));
}
waitForClusterToForm(cacheNames);
}
}
waitForClusterToForm(cacheNames);
return caches;
}

Expand Down

0 comments on commit 16d0d85

Please sign in to comment.