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
{{ message }}
This repository was archived by the owner on Sep 2, 2020. It is now read-only.
Calculations occasionally fail due to an unresolved promise. In lib/executor.js, the getPatientsById function needs to: return await this.patientSource.findPatients(patientIdsList);
instead of: return this.patientSource.findPatients(patientIdsList);
Otherwise null is occasionally returned which results in a query result with zero values for all populations.
Calculations occasionally fail due to an unresolved promise. In lib/executor.js, the getPatientsById function needs to:
return await this.patientSource.findPatients(patientIdsList);instead of:
return this.patientSource.findPatients(patientIdsList);Otherwise null is occasionally returned which results in a query result with zero values for all populations.