Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimone Bordet2015-11-04 12:44:40 +0000
committerSimone Bordet2015-11-04 12:44:40 +0000
commita1e2d4e8c3b32397d128424d42915d07744073ab (patch)
tree432bc7cfc75a265279fb258a945fceba1cc6ef80
parent0172b68301786e8b29e62865afe9ec9edfdf13d2 (diff)
downloadorg.eclipse.jetty.project-a1e2d4e8c3b32397d128424d42915d07744073ab.tar.gz
org.eclipse.jetty.project-a1e2d4e8c3b32397d128424d42915d07744073ab.tar.xz
org.eclipse.jetty.project-a1e2d4e8c3b32397d128424d42915d07744073ab.zip
481006 - SSL requests intermittently fail with EOFException when SSL renegotiation is disallowed.
Deprecated HttpConnectionOverFCGI constructor just in case someone uses it.
-rw-r--r--jetty-fcgi/fcgi-client/src/main/java/org/eclipse/jetty/fcgi/client/http/HttpConnectionOverFCGI.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/jetty-fcgi/fcgi-client/src/main/java/org/eclipse/jetty/fcgi/client/http/HttpConnectionOverFCGI.java b/jetty-fcgi/fcgi-client/src/main/java/org/eclipse/jetty/fcgi/client/http/HttpConnectionOverFCGI.java
index 8b4ff09bcd..8d7c224da9 100644
--- a/jetty-fcgi/fcgi-client/src/main/java/org/eclipse/jetty/fcgi/client/http/HttpConnectionOverFCGI.java
+++ b/jetty-fcgi/fcgi-client/src/main/java/org/eclipse/jetty/fcgi/client/http/HttpConnectionOverFCGI.java
@@ -65,6 +65,10 @@ public class HttpConnectionOverFCGI extends AbstractConnection implements Connec
private final ClientParser parser;
private ByteBuffer buffer;
+ /**
+ * @deprecated use {@link #HttpConnectionOverFCGI(EndPoint, HttpDestination, Promise, boolean)} instead
+ */
+ @Deprecated
public HttpConnectionOverFCGI(EndPoint endPoint, HttpDestination destination, boolean multiplexed)
{
this(endPoint, destination, new Promise.Adapter<Connection>(), multiplexed);

Back to the top