Skip to content

Commit

Permalink
Fix an oopsie.
Browse files Browse the repository at this point in the history
  • Loading branch information
mkreuzkam-cap committed Dec 19, 2024
1 parent 9f3e9f1 commit e64b935
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/server/src/infra/sync/tsp/tsp-sync.strategy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ export class TspSyncStrategy extends SyncStrategy {
}

private async syncData(system: System, schools: School[]): Promise<void> {
const schoolDataDaysToFetch = this.configService.getOrThrow<number>('TSP_SYNC_SCHOOL_DAYS_TO_FETCH');
const schoolDataDaysToFetch = this.configService.getOrThrow<number>('TSP_SYNC_DATA_DAYS_TO_FETCH');
const tspTeachers = await this.tspFetchService.fetchTspTeachers(system, schoolDataDaysToFetch);
const tspStudents = await this.tspFetchService.fetchTspStudents(system, schoolDataDaysToFetch);
const tspClasses = await this.tspFetchService.fetchTspClasses(system, schoolDataDaysToFetch);
Expand Down

0 comments on commit e64b935

Please sign in to comment.