diff --git a/ProjectLighthouse/StartupTasks.cs b/ProjectLighthouse/StartupTasks.cs index 124b3e26..8e13ca73 100644 --- a/ProjectLighthouse/StartupTasks.cs +++ b/ProjectLighthouse/StartupTasks.cs @@ -159,7 +159,7 @@ public static class StartupTasks Stopwatch totalStopwatch = Stopwatch.StartNew(); Stopwatch stopwatch = Stopwatch.StartNew(); Logger.Info("Migrating database...", LogArea.Database); - MySqlDistributedLock mutex = new("LighthouseMigration", ServerConfiguration.Instance.DbConnectionString); + MySqlDistributedLock mutex = new("LighthouseMigration", ServerConfiguration.Instance.DbConnectionString, exactName: true); await using (await mutex.AcquireAsync()) { stopwatch.Stop();