Skip to content
Snippets Groups Projects
Commit e19fabd9 authored by brinn's avatar brinn
Browse files

minor: fix error message

SVN: 812
parent f7fde2de
No related branches found
No related tags found
No related merge requests found
...@@ -123,7 +123,7 @@ public class DBMigrationEngine ...@@ -123,7 +123,7 @@ public class DBMigrationEngine
} }
if (entry.getRunStatus() != LogEntry.RunStatus.SUCCESS) if (entry.getRunStatus() != LogEntry.RunStatus.SUCCESS)
{ {
String message = "Inconsistent database: Last creation/migration didn't succeeded. Last log entry: " + entry; String message = "Inconsistent database: Last creation/migration didn't succeed. Last log entry: " + entry;
operationLog.error(message); operationLog.error(message);
throw new EnvironmentFailureException(message); throw new EnvironmentFailureException(message);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment