for (List<String> urls : options.shardUrls) {
for (String url : urls) {
// TODO: we should do these concurrently
HttpSolrServer server = new HttpSolrServer(url);
server.commit();
server.shutdown();
}
}
}
LOG.info("Done committing live merge");
} catch (Exception e) {