jetty-9 ignore all selector exceptions if not running, since closed selector exception is not an IOException

This commit is contained in:
Greg Wilkins 2012-07-31 14:55:06 +10:00
parent e772e26b5b
commit 01529ba128
1 changed files with 1 additions and 1 deletions

View File

@ -384,7 +384,7 @@ public abstract class SelectorManager extends AbstractLifeCycle implements Dumpa
}
selectedKeys.clear();
}
catch (IOException x)
catch (Exception x)
{
if (isRunning())
LOG.warn(x);