account-lookup-service 17.8.0-snapshot.13 → 17.8.0-snapshot.14

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.13",
4
+ "version": "17.8.0-snapshot.14",
5
5
  "license": "Apache-2.0",
6
6
  "author": "ModusBox",
7
7
  "contributors": [
@@ -124,8 +124,13 @@ class BasePartiesService {
124
124
  }
125
125
 
126
126
  async validateParticipant (participantId) {
127
- this.stepInProgress('validateParticipant')
128
- return this.deps.participant.validateParticipant(participantId)
127
+ try {
128
+ this.stepInProgress('validateParticipant')
129
+ return this.deps.participant.validateParticipant(participantId)
130
+ } catch (err) {
131
+ this.log.warn(`error in validateParticipant ${participantId}: `, err)
132
+ return null
133
+ }
129
134
  }
130
135
 
131
136
  async identifyDestinationForCallback () {