summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrian Carlstrom <bdc@google.com>2011-01-04 13:38:02 -0800
committerAndroid Git Automerger <android-git-automerger@android.com>2011-01-04 13:38:02 -0800
commit741ca79db8c9076ba1c9f2a47cfa839da9e3f53f (patch)
treee50af9d13017d3633aa2f66408f5e7e8993099c5
parent15921ecc8d2446dd23f49190d0b06b31f752de9b (diff)
parent843bcb6f4f65c0cdca327c6467813b88c52042f3 (diff)
downloadexternal_apache-http-741ca79db8c9076ba1c9f2a47cfa839da9e3f53f.zip
external_apache-http-741ca79db8c9076ba1c9f2a47cfa839da9e3f53f.tar.gz
external_apache-http-741ca79db8c9076ba1c9f2a47cfa839da9e3f53f.tar.bz2
am 843bcb6f: DefaultRequestDirector should ignore IOExceptions from stale connections
* commit '843bcb6f4f65c0cdca327c6467813b88c52042f3': DefaultRequestDirector should ignore IOExceptions from stale connections
-rw-r--r--src/org/apache/http/impl/client/DefaultRequestDirector.java13
1 files changed, 12 insertions, 1 deletions
diff --git a/src/org/apache/http/impl/client/DefaultRequestDirector.java b/src/org/apache/http/impl/client/DefaultRequestDirector.java
index 6df6246..b8f380b 100644
--- a/src/org/apache/http/impl/client/DefaultRequestDirector.java
+++ b/src/org/apache/http/impl/client/DefaultRequestDirector.java
@@ -334,7 +334,18 @@ public class DefaultRequestDirector implements RequestDirector {
this.log.debug("Stale connection check");
if (managedConn.isStale()) {
this.log.debug("Stale connection detected");
- managedConn.close();
+ // BEGIN android-changed
+ try {
+ managedConn.close();
+ } catch (IOException ignored) {
+ // SSLSocket's will throw IOException
+ // because they can't send a "close
+ // notify" protocol message to the
+ // server. Just supresss any
+ // exceptions related to closing the
+ // stale connection.
+ }
+ // END android-changed
}
}
}