private InsufficientLogException setupLogRefresh(VLSN failedMatchpoint)
throws IOException {
protocol.write(protocol.new RestoreRequest(failedMatchpoint),
namedChannel);
RestoreResponse response =
(RestoreResponse) protocol.read(namedChannel);
return new InsufficientLogException
(repNode,
response.getCBVLSN(),
new HashSet<ReplicationNode>(Arrays.asList
(response.getLogProviders())));
}