Skip to content

Commit

Permalink
edit the DeprecateExactInt sql error handling a bit for #1218
Browse files Browse the repository at this point in the history
  • Loading branch information
rtldg committed Oct 18, 2024
1 parent 187bd2c commit 9434dc9
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -533,7 +533,8 @@ public void SQL_Migration_DeprecateExactTimeInt_Query(Database db, DBResultSet r
{
if (results == null || error[0] != '\0')
{
LogError("DeprecateExactTimeInt query failed... %s (%s)", results == null ? "results=null" : "", error);
LogError("DeprecateExactTimeInt query failed... %s (%s). Finishing this migration though because things are probably fine...", results == null ? "results=null" : "", error);
InsertMigration(Migration_DeprecateExactTimeInt);
return;
}

Expand Down

0 comments on commit 9434dc9

Please sign in to comment.