in lib/common/utils/reportUtilities.util.ts [43:53]
async shouldWaitMore(): Promise<boolean> {
const status: ReportJobStatus = await this.reportService.getReportJobStatus(
this.reportJobId,
);
if (status === ReportJobStatus.FAILED) {
throw new AdsReportsException(`Report job ${this.reportJobId} failed.`);
}
return status != ReportJobStatus.COMPLETED;
}