diff --git a/GlobalRankLookupCache/Program.cs b/GlobalRankLookupCache/Program.cs index 03b88a7..55c96a2 100644 --- a/GlobalRankLookupCache/Program.cs +++ b/GlobalRankLookupCache/Program.cs @@ -13,7 +13,7 @@ public static async Task GetDatabaseConnection() string host = (Environment.GetEnvironmentVariable("DB_HOST") ?? "localhost"); string user = (Environment.GetEnvironmentVariable("DB_USER") ?? "root"); - var connection = new MySqlConnection($"Server={host};Database=osu;User ID={user};ConnectionReset=false;Pooling=true;Max Pool Size=100;Connection Timeout=30;Connection Lifetime=300;"); + var connection = new MySqlConnection($"Server={host};Database=osu;User ID={user};ConnectionReset=false;Pooling=true;Max Pool Size=100;Connection Timeout=30;"); await connection.OpenAsync(); return connection; }