Commit c70e75a6 authored by Ken "Elf" Mathieu Sternberg's avatar Ken "Elf" Mathieu Sternberg Committed by Cédric de Saint Martin

Modified the ad-hoc proxy lookup to use _getKey(), rather than the

error-prone in-line method.

_getKey() will look for options.target as well as
options.host:options.port, and so is useful for a segmented
proxy server where the destination proxies are not constructed before
first references.
parent 3af0238a
...@@ -180,8 +180,8 @@ RoutingProxy.prototype.proxyRequest = function (req, res, options) { ...@@ -180,8 +180,8 @@ RoutingProxy.prototype.proxyRequest = function (req, res, options) {
options.host = location.host; options.host = location.host;
} }
var key = options.host + ':' + options.port, var key = this._getKey(options),
proxy; proxy;
if (!this.proxies[key]) { if (!this.proxies[key]) {
this.add(options); this.add(options);
...@@ -218,8 +218,8 @@ RoutingProxy.prototype.proxyWebSocketRequest = function (req, socket, head, opti ...@@ -218,8 +218,8 @@ RoutingProxy.prototype.proxyWebSocketRequest = function (req, socket, head, opti
options.host = location.host; options.host = location.host;
} }
var key = options.host + ':' + options.port, var key = this._getKey(options),
proxy; proxy;
if (!this.proxies[key]) { if (!this.proxies[key]) {
this.add(options); this.add(options);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment