Skip to content

Commit

Permalink
Removed messages from the processor since the BaseQueue has similar o…
Browse files Browse the repository at this point in the history
…nes.
  • Loading branch information
andrewsignori-aot committed Dec 18, 2024
1 parent 79e989a commit 31085c4
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ export class SINValidationProcessIntegrationScheduler extends BaseScheduler<void
await this.sinValidationProcessingService.uploadSINValidationRequests(
childProcessSummary,
);
processSummary.info("ESDC SIN validation request file sent.");
return [
`Generated file: ${uploadResult.generatedFile}`,
`Uploaded records: ${uploadResult.uploadedRecords}`,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,11 @@ export class StudentLoanBalancesPartTimeIntegrationScheduler extends BaseSchedul
_job: Job<void>,
processSummary: ProcessSummary,
): Promise<string> {
processSummary.info("Processing Student Loan Balances files.");
const serviceProcessSummary = new ProcessSummary();
processSummary.children(serviceProcessSummary);
await this.studentLoanBalancesProcessingService.processStudentLoanBalances(
serviceProcessSummary,
);
processSummary.info("Completed processing Student Loan Balances files.");
return "Process finalized with success.";
}

Expand Down

0 comments on commit 31085c4

Please sign in to comment.