account-lookup-service 17.4.0-csi-1233.0 → 17.4.0-csi-1233.2
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 +2 -2
- package/src/domain/parties/utils.js +1 -1
- package/src/lib/index.js +0 -1
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.4.0-csi-1233.
|
4
|
+
"version": "17.4.0-csi-1233.2",
|
5
5
|
"license": "Apache-2.0",
|
6
6
|
"author": "ModusBox",
|
7
7
|
"contributors": [
|
@@ -98,7 +98,7 @@
|
|
98
98
|
"@mojaloop/central-services-shared": "18.22.2-snapshot.2",
|
99
99
|
"@mojaloop/central-services-stream": "11.5.1",
|
100
100
|
"@mojaloop/database-lib": "11.1.3",
|
101
|
-
"@mojaloop/event-sdk": "14.3.
|
101
|
+
"@mojaloop/event-sdk": "14.3.1",
|
102
102
|
"@mojaloop/inter-scheme-proxy-cache-lib": "2.3.7",
|
103
103
|
"@mojaloop/ml-schema-transformer-lib": "2.5.6",
|
104
104
|
"@mojaloop/sdk-standard-components": "19.10.0",
|
@@ -75,7 +75,7 @@ const createErrorHandlerOnSendingCallback = (config, logger) => async (err, head
|
|
75
75
|
} catch (exc) {
|
76
76
|
// We can't do anything else here- we _must_ handle all errors _within_ this function because
|
77
77
|
// we've already sent a sync response- we cannot throw.
|
78
|
-
logger.error('
|
78
|
+
logger.error('failed to handleErrorOnSendingCallback. No further processing!', exc)
|
79
79
|
}
|
80
80
|
}
|
81
81
|
|