I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 5e734088 authored by zab2's avatar zab2
Browse files

reduce severity of CancelledKeyExceptions

	trac ticket 928
parent 6265bdf0
No related branches found
No related tags found
No related merge requests found
......@@ -187,7 +187,11 @@ class EventPumper implements Runnable {
} catch (IOException ioe) {
if (_log.shouldLog(Log.WARN))
_log.warn("Error selecting", ioe);
}
} catch (CancelledKeyException cke) {
if (_log.shouldLog(Log.WARN))
_log.warn("Error selecting", cke);
continue;
}
if (lastFailsafeIteration + FAILSAFE_ITERATION_FREQ < System.currentTimeMillis()) {
// in the *cough* unthinkable possibility that there are bugs in
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment