debug
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1541 7e9141cc-0065-0410-87d8-b60c137991c4
This commit is contained in:
parent
4a1923d007
commit
79dd3c70db
|
@ -15,6 +15,7 @@ package org.eclipse.jetty.client;
|
|||
|
||||
import java.io.IOException;
|
||||
import java.io.InputStream;
|
||||
import java.net.SocketTimeoutException;
|
||||
import java.util.concurrent.atomic.AtomicInteger;
|
||||
|
||||
import org.eclipse.jetty.client.security.SecurityListener;
|
||||
|
@ -822,7 +823,14 @@ public class HttpExchange
|
|||
{
|
||||
try
|
||||
{
|
||||
HttpExchange.this.onException(ex);
|
||||
if (ex instanceof SocketTimeoutException ||
|
||||
ex.getCause() instanceof SocketTimeoutException)
|
||||
{
|
||||
Log.debug(ex);
|
||||
HttpExchange.this.onExpire();
|
||||
}
|
||||
else
|
||||
HttpExchange.this.onException(ex);
|
||||
}
|
||||
finally
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue