Skip to content

Commit

Permalink
fix: 더미 크론잡 추가하여 금학기 기간 설정 적용 (#156)
Browse files Browse the repository at this point in the history
  • Loading branch information
hynseok authored Nov 3, 2024
1 parent 0e5a8b5 commit bf2ba86
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/modules/task/task.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,9 @@ export class TaskService {
case 9:
this.addCronJob(phase.title, phase.start, this._09);
break;
case 10:
this.addCronJob(phase.title, phase.start, this._10);
break;
default:
console.log("WARNING: Cron작업이 제대로 작동이 안되고 있을 가능성이 있습니다. DB에서 단계를 확인해주세요");
break;
Expand Down Expand Up @@ -281,4 +284,6 @@ export class TaskService {
});
});
};

_10 = async () => {};
}

0 comments on commit bf2ba86

Please sign in to comment.