account-lookup-service 17.14.1 → 17.14.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -146,6 +146,7 @@ class GetPartiesService extends BasePartiesService {
|
|
146
146
|
|
147
147
|
const proxyNames = await this.#getFilteredProxyList(proxy)
|
148
148
|
if (!proxyNames.length) {
|
149
|
+
log.info('no active proxies found, sending error callback')
|
149
150
|
return this.#sendPartyNotFoundErrorCallback(headers)
|
150
151
|
}
|
151
152
|
|
@@ -285,7 +286,7 @@ class GetPartiesService extends BasePartiesService {
|
|
285
286
|
return []
|
286
287
|
}
|
287
288
|
|
288
|
-
const proxyNames = await this.deps.proxies.getAllProxiesNames(this.deps.config.SWITCH_ENDPOINT)
|
289
|
+
const proxyNames = await this.deps.proxies.getAllProxiesNames(this.deps.config.SWITCH_ENDPOINT, true)
|
289
290
|
this.log.debug('getAllProxiesNames is done', { proxyNames })
|
290
291
|
return proxyNames.filter(name => name !== proxy)
|
291
292
|
}
|