Skip to content

Commit

Permalink
chore(engine): Fix Message Typos
Browse files Browse the repository at this point in the history
Signed-off-by: Cameron Brown <Cameron.Brown2@fmr.com>
Related-to: #4246
  • Loading branch information
cameronjoebrown committed Apr 22, 2024
1 parent e78d544 commit 446c4d0
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -574,7 +574,7 @@ public void noHistoryLevelPropertyFound() {

public void noDeploymentLockPropertyFound() {
logError(
"068", "No deployment lock property found in databse");
"068", "No deployment lock property found in database");
}

public void debugJobExecuted(JobEntity jobEntity) {
Expand Down Expand Up @@ -624,7 +624,7 @@ public ProcessEngineException multipleTenantsForCaseDefinitionKeyException(Strin
public ProcessEngineException deleteProcessDefinitionWithProcessInstancesException(String processDefinitionId, Long processInstanceCount) {
return new ProcessEngineException(exceptionMessage(
"076",
"Deletion of process definition without cascading failed. Process definition with id: {} can't be deleted, since there exists {} dependening process instances.",
"Deletion of process definition without cascading failed. Process definition with id: {} can't be deleted, because there are {} dependent process instances.",
processDefinitionId, processInstanceCount
));
}
Expand All @@ -640,7 +640,7 @@ public ProcessEngineException resolveParentOfExecutionFailedException(String par

public void noHistoryCleanupLockPropertyFound() {
logError(
"078", "No history cleanup lock property found in databse");
"078", "No history cleanup lock property found in database");
}

public void logUpdateUnrelatedCaseDefinitionEntity(String thisKey, String thatKey, String thisDeploymentId, String thatDeploymentId) {
Expand Down

0 comments on commit 446c4d0

Please sign in to comment.