You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
await client.search({resourceType, searchParams}) throws and should be able to call const { response, request } = Client.httpFor(err) to get the response.
As a workaround I just added console.log('response.headers', headers); to line 173 of http-client.js. This is not a feature we normally need but Cerner is sending 422 and they needed the X-Request-Id to troubleshoot their side.
The text was updated successfully, but these errors were encountered:
Expected Behavior
await client.search({resourceType, searchParams})
throws and should be able to callconst { response, request } = Client.httpFor(err)
to get the response.Actual Behavior
response is undefined
Steps to Reproduce the Problem
Specifications
As a workaround I just added
console.log('response.headers', headers);
to line 173 of http-client.js. This is not a feature we normally need but Cerner is sending 422 and they needed theX-Request-Id
to troubleshoot their side.The text was updated successfully, but these errors were encountered: