Merge branch 'jetty-9.3.x' of github.com:eclipse/jetty.project into jetty-9.3.x
This commit is contained in:
commit
88ec96b600
|
@ -135,6 +135,7 @@ public abstract class AbstractHttpClientTransport extends ContainerLifeCycle imp
|
||||||
catch (IOException xx)
|
catch (IOException xx)
|
||||||
{
|
{
|
||||||
LOG.ignore(xx);
|
LOG.ignore(xx);
|
||||||
|
x.addSuppressed(xx);
|
||||||
}
|
}
|
||||||
finally
|
finally
|
||||||
{
|
{
|
||||||
|
|
|
@ -258,11 +258,14 @@ public class ManagedSelector extends AbstractLifeCycle implements Runnable, Dump
|
||||||
}
|
}
|
||||||
catch (Throwable x)
|
catch (Throwable x)
|
||||||
{
|
{
|
||||||
closeNoExceptions(_selector);
|
|
||||||
if (isRunning())
|
if (isRunning())
|
||||||
LOG.warn(x);
|
LOG.warn(x);
|
||||||
else
|
else
|
||||||
|
{
|
||||||
|
LOG.warn(x.toString());
|
||||||
LOG.debug(x);
|
LOG.debug(x);
|
||||||
|
}
|
||||||
|
closeNoExceptions(_selector);
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue