Skip to content

Commit

Permalink
Yet another MySQL fix. (#3870)
Browse files Browse the repository at this point in the history
  • Loading branch information
LtRipley36706 authored Jul 2, 2022
1 parent d5fbf1f commit 66208f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/ACE.Server/Program_DbUpdates.cs
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ private static void PatchDatabase(string dbType, string host, uint port, string
database = worldDB;
break;
}
var sqlConnect = new MySql.Data.MySqlClient.MySqlConnection($"server={host};port={port};user={username};password={password};database={database};DefaultCommandTimeout=120;SslMode=None;ApplicationName=ACEmulator");
var sqlConnect = new MySql.Data.MySqlClient.MySqlConnection($"server={host};port={port};user={username};password={password};database={database};DefaultCommandTimeout=120;SslMode=None");
sqlDBFile = sqlDBFile.Replace("ace_auth", authDB);
sqlDBFile = sqlDBFile.Replace("ace_shard", shardDB);
sqlDBFile = sqlDBFile.Replace("ace_world", worldDB);
Expand Down

0 comments on commit 66208f2

Please sign in to comment.