Skip to content

Commit

Permalink
Fix Test on MySQL
Browse files Browse the repository at this point in the history
  • Loading branch information
da3dsoul authored Nov 6, 2023
1 parent b2b2544 commit eccd9f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Shoko.Server/Databases/MySQL.cs
Original file line number Diff line number Diff line change
Expand Up @@ -902,7 +902,7 @@ public override bool TestConnection()
{
try
{
using (var conn = new MySqlConnection(GetConnectionString()))
using (var conn = new MySqlConnection(GetTestConnectionString()))
{
var query = "select 1";
var cmd = new MySqlCommand(query, conn);
Expand Down

0 comments on commit eccd9f3

Please sign in to comment.