From 9f4a0bbefb7286bd68ab600c64b4ba2e5d93b8b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=ED=8C=90=EB=8F=8C?= Date: Sat, 6 Apr 2024 20:32:11 +0900 Subject: [PATCH] =?UTF-8?q?cron=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Server/System/Statics.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Server/System/Statics.cs b/Server/System/Statics.cs index ab3cc52..29a36a3 100644 --- a/Server/System/Statics.cs +++ b/Server/System/Statics.cs @@ -7,13 +7,13 @@ namespace Server.System public static class Statics { #if DEBUG - public static readonly string SQL_URL = "Host=192.168.0.2;Port=5432;Username=manager;Password=Zn2zs558W5SdD8K;Database=project_thewar;"; - public static readonly string EXCEL_SQL_URL = "Host=192.168.0.2;Port=5432;Username=manager;Password=Zn2zs558W5SdD8K;Database=project_thewar;"; + public static readonly string SQL_URL = "Host=192.168.1.2;Port=5432;Username=manager;Password=Zn2zs558W5SdD8K;Database=project_thewar;"; + public static readonly string EXCEL_SQL_URL = "Host=192.168.1.2;Port=5432;Username=manager;Password=Zn2zs558W5SdD8K;Database=project_thewar;"; public static readonly string remoteUrl = "https://manager:BQNl01bJJF0wn9R@gitea.pandoli365.com/Team.thewar/thewar_excel.git"; public static readonly Redis redis = new Redis("192.168.1.2", 6379, 1, "xPEz3x08xQ8G1Fa"); #elif LIVE - public static readonly string SQL_URL = "Host=192.168.0.2;Port=5432;Username=manager;Password=Zn2zs558W5SdD8K;Database=project_thewar;"; - public static readonly string EXCEL_SQL_URL = "Host=192.168.0.2;Port=5432;Username=manager;Password=Zn2zs558W5SdD8K;Database=project_thewar;"; + public static readonly string SQL_URL = "Host=192.168.1.2;Port=5432;Username=manager;Password=Zn2zs558W5SdD8K;Database=project_thewar;"; + public static readonly string EXCEL_SQL_URL = "Host=192.168.1.2;Port=5432;Username=manager;Password=Zn2zs558W5SdD8K;Database=project_thewar;"; public static readonly string remoteUrl = "https://manager:BQNl01bJJF0wn9R@gitea.pandoli365.com/Team.thewar/thewar_excel_live.git"; public static readonly Redis redis = new Redis("192.168.1.2", 6379, 1, "xPEz3x08xQ8G1Fa"); #endif @@ -45,6 +45,6 @@ namespace Server.System public static ResetShopItemDataExcel resetShopItemExcel = new ResetShopItemDataExcel(); //Schedule - public static Schedule session = new Schedule("sessionJob", "sessionGroup", "Session", "* 0/1 * * * ?"); + public static Schedule session = new Schedule("sessionJob", "sessionGroup", "Session", "0 0/1 * 1/1 * ? *"); } }