mirror of https://github.com/calzoneman/sync.git
Use new proxy address formatter
This commit is contained in:
parent
dd73a8ee9a
commit
f8470fc8f6
|
@ -3,6 +3,7 @@ import FrontendManager from './frontendmanager';
|
|||
import uuid from 'uuid';
|
||||
import PoolEntryUpdater from 'cytube-common/lib/redis/poolentryupdater';
|
||||
import JSONProtocol from 'cytube-common/lib/proxy/protocol';
|
||||
import { formatProxyAddress } from 'cytube-common/lib/util/addressutil';
|
||||
|
||||
const BACKEND_POOL = 'backend-hosts';
|
||||
|
||||
|
@ -28,8 +29,10 @@ export default class IOBackend {
|
|||
}
|
||||
|
||||
initBackendPoolUpdater() {
|
||||
const hostname = this.proxyListenerConfig.getHost();
|
||||
const port = this.proxyListenerConfig.getPort();
|
||||
const entry = {
|
||||
address: this.proxyListenerConfig.getHost() + '/' + this.proxyListenerConfig.getPort()
|
||||
address: formatProxyAddress(hostname, port)
|
||||
}
|
||||
this.poolEntryUpdater = new PoolEntryUpdater(
|
||||
this.poolRedisClient,
|
||||
|
|
Loading…
Reference in New Issue