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 has been 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.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
The text was updated successfully, but these errors were encountered: