columnFamilies = new String[] {};
}
log.info("Executing repair on keyspace [" + keyspace + "]");
long start = System.currentTimeMillis();
keyspaceService.repair(keyspace, columnFamilies);
long end = System.currentTimeMillis();
log.info("Finished repair on keyspace [" + keyspace + "] in " + (end - start) + " ms");
return new OperationResult();
}