Skip to content

Commit

Permalink
Merge pull request #158 from mcrossley/master
Browse files Browse the repository at this point in the history
Rollover SQL settings
  • Loading branch information
mcrossley authored Sep 4, 2022
2 parents f9cb28c + 3539719 commit d6cdc94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CumulusMX/Cumulus.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5194,7 +5194,7 @@ private void ReadIniFile()
for (var i = 1; i < 10; i++)
{
if (ini.ValueExists("MySQL", "CustomMySqlRolloverCommandString" + i))
MySqlSettings.CustomRollover.Commands[i] = ini.GetValue("HTTP", "CustomMySqlRolloverCommandString" + i, "");
MySqlSettings.CustomRollover.Commands[i] = ini.GetValue("MySQL", "CustomMySqlRolloverCommandString" + i, "");
}

MySqlSettings.CustomRollover.Enabled = ini.GetValue("MySQL", "CustomMySqlRolloverEnabled", false);
Expand Down

0 comments on commit d6cdc94

Please sign in to comment.