Use debug logging rather than info for rejected ping task
This exception is thrown on node shutdown and doesn't indicate an critical situation but rather is caught for consistency reasons.
This commit is contained in:
parent
890d06f018
commit
012d47b500
|
@ -185,7 +185,7 @@ public class UnicastZenPing extends AbstractLifecycleComponent<ZenPing> implemen
|
||||||
}
|
}
|
||||||
listener.onPing(responses.values().toArray(new PingResponse[responses.size()]));
|
listener.onPing(responses.values().toArray(new PingResponse[responses.size()]));
|
||||||
} catch (RejectedExecutionException ex) {
|
} catch (RejectedExecutionException ex) {
|
||||||
logger.info("Ping execution ejected", ex);
|
logger.debug("Ping execution ejected", ex);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue