Skip to content

Commit

Permalink
Fixes #4421 - HttpClient support for PROXY protocol.
Browse files Browse the repository at this point in the history
Fixed visibility of ProxyProtocolConnection.
Must be protected because it's the return type
of protected methods.

Signed-off-by: Simone Bordet <[email protected]>
  • Loading branch information
sbordet committed Dec 19, 2019
1 parent c5acf96 commit e4f1106
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ public Connection newConnection(EndPoint endPoint, Map<String, Object> context)

protected abstract ProxyProtocolConnection newProxyProtocolConnection(EndPoint endPoint, Map<String, Object> context);

private abstract static class ProxyProtocolConnection extends AbstractConnection implements Callback
protected abstract static class ProxyProtocolConnection extends AbstractConnection implements Callback
{
protected static final Logger LOG = Log.getLogger(ProxyProtocolConnection.class);

Expand Down

0 comments on commit e4f1106

Please sign in to comment.