account-lookup-service 17.8.0-snapshot.8 → 17.8.0-snapshot.9
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.
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "account-lookup-service",
|
3
3
|
"description": "Account Lookup Service is used to validate Party and Participant lookups.",
|
4
|
-
"version": "17.8.0-snapshot.
|
4
|
+
"version": "17.8.0-snapshot.9",
|
5
5
|
"license": "Apache-2.0",
|
6
6
|
"author": "ModusBox",
|
7
7
|
"contributors": [
|
@@ -100,7 +100,7 @@
|
|
100
100
|
"@mojaloop/event-sdk": "14.4.0",
|
101
101
|
"@mojaloop/inter-scheme-proxy-cache-lib": "2.4.0",
|
102
102
|
"@mojaloop/ml-schema-transformer-lib": "2.7.0",
|
103
|
-
"@mojaloop/sdk-standard-components": "19.11.
|
103
|
+
"@mojaloop/sdk-standard-components": "19.11.3-snapshot.0",
|
104
104
|
"@now-ims/hapi-now-auth": "2.1.0",
|
105
105
|
"ajv": "8.17.1",
|
106
106
|
"ajv-keywords": "5.1.0",
|
@@ -267,6 +267,7 @@ class GetPartiesService extends BasePartiesService {
|
|
267
267
|
.then(() => { sentList.push(sendTo) })
|
268
268
|
.catch(err => {
|
269
269
|
this.log.error(`error in sending request to proxy ${sendTo}: `, err)
|
270
|
+
this.log.verbose(`remove proxy ${sendTo} from proxyCache...`)
|
270
271
|
return this.deps.proxyCache.receivedErrorResponse(alsReq, sendTo)
|
271
272
|
})
|
272
273
|
.catch(err => {
|
package/src/index.js
CHANGED