public CoordinatorActionInfo ignore(String jobId, String type, String scope) throws CoordinatorEngineException {
try {
LOG.info("User " + user + " ignore a Coordinator Action (s) [" + scope + "] of the Coordinator Job ["
+ jobId + "]");
return new CoordActionsIgnoreXCommand(jobId, type, scope).call();
}
catch (CommandException e) {
throw new CoordinatorEngineException(e);
}
}