주석수정

This commit is contained in:
김민서 2024-04-04 14:29:59 +09:00
parent ec53ec0b50
commit 914de7dea9
2 changed files with 2 additions and 3 deletions

View File

@ -43,7 +43,7 @@ namespace Server.System
public static ConsumableItemDataExcel consumableItemExcel = new ConsumableItemDataExcel(); public static ConsumableItemDataExcel consumableItemExcel = new ConsumableItemDataExcel();
public static ResetShopItemDataExcel resetShopItemExcel = new ResetShopItemDataExcel(); public static ResetShopItemDataExcel resetShopItemExcel = new ResetShopItemDataExcel();
// //Schedule
public static Schedule<SessionScheduler> session = new Schedule<SessionScheduler>("sessionJob", "sessionGroup", "Session", "0/5 * * * * ?"); public static Schedule<SessionScheduler> session = new Schedule<SessionScheduler>("sessionJob", "sessionGroup", "Session", "* 0/1 * * * ?");
} }
} }

View File

@ -51,7 +51,6 @@ namespace Server.System
} }
public async Task Stop() public async Task Stop()
{ {
// 스케줄러 중지
await scheduler.Shutdown(); await scheduler.Shutdown();
} }
} }