Merge branch 'master' of ssh://git.eclipse.org/gitroot/jetty/org.eclipse.jetty.project
This commit is contained in:
commit
9315ed8b73
|
@ -47,6 +47,7 @@ public class ProxyEngineSelector extends ServerSessionFrameListener.Adapter
|
||||||
Headers.Header hostHeader = headers.get(HTTPSPDYHeader.HOST.name(clientVersion));
|
Headers.Header hostHeader = headers.get(HTTPSPDYHeader.HOST.name(clientVersion));
|
||||||
if (hostHeader == null)
|
if (hostHeader == null)
|
||||||
{
|
{
|
||||||
|
logger.debug("No host header found: " + headers);
|
||||||
rst(clientStream);
|
rst(clientStream);
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
@ -59,6 +60,7 @@ public class ProxyEngineSelector extends ServerSessionFrameListener.Adapter
|
||||||
ProxyServerInfo proxyServerInfo = getProxyServerInfo(host);
|
ProxyServerInfo proxyServerInfo = getProxyServerInfo(host);
|
||||||
if (proxyServerInfo == null)
|
if (proxyServerInfo == null)
|
||||||
{
|
{
|
||||||
|
logger.debug("No matching ProxyServerInfo found for: " + host);
|
||||||
rst(clientStream);
|
rst(clientStream);
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
@ -67,6 +69,7 @@ public class ProxyEngineSelector extends ServerSessionFrameListener.Adapter
|
||||||
ProxyEngine proxyEngine = proxyEngines.get(protocol);
|
ProxyEngine proxyEngine = proxyEngines.get(protocol);
|
||||||
if (proxyEngine == null)
|
if (proxyEngine == null)
|
||||||
{
|
{
|
||||||
|
logger.debug("No matching ProxyEngine found for: " + protocol);
|
||||||
rst(clientStream);
|
rst(clientStream);
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue