481006 - SSL requests intermittently fail with EOFException when SSL renegotiation is disallowed.
Deprecated HttpConnectionOverFCGI constructor just in case someone uses it.
This commit is contained in:
parent
0172b68301
commit
a1e2d4e8c3
|
@ -65,6 +65,10 @@ public class HttpConnectionOverFCGI extends AbstractConnection implements Connec
|
||||||
private final ClientParser parser;
|
private final ClientParser parser;
|
||||||
private ByteBuffer buffer;
|
private ByteBuffer buffer;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @deprecated use {@link #HttpConnectionOverFCGI(EndPoint, HttpDestination, Promise, boolean)} instead
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
public HttpConnectionOverFCGI(EndPoint endPoint, HttpDestination destination, boolean multiplexed)
|
public HttpConnectionOverFCGI(EndPoint endPoint, HttpDestination destination, boolean multiplexed)
|
||||||
{
|
{
|
||||||
this(endPoint, destination, new Promise.Adapter<Connection>(), multiplexed);
|
this(endPoint, destination, new Promise.Adapter<Connection>(), multiplexed);
|
||||||
|
|
Loading…
Reference in New Issue