// compatibility with 1.0/1.1 clients is not perfect, so we must allow for some misses
int misses = 0;
for (int i = 0; i < 200; i++) {
byte[] keyBytes = (byte[]) kas.getKeyForAddress(address(cacheIndex));
String key = DistributionRetryTest.ByteKeyGenerator.getStringObject(keyBytes);
List<Address> serverBackups = serverCH.locateOwners(keyBytes);
assert serverBackups.contains(address(cacheIndex));
remoteCache.put(key, "v");
Address hitServer = getHitServer();
if (!serverBackups.contains(hitServer)) {