Skip to content

Commit

Permalink
Ignore Exception in
Browse files Browse the repository at this point in the history
  • Loading branch information
mohityadav766 committed Sep 29, 2023
1 parent f2c88ff commit 1a0cd38
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public static void lowerCaseUserNameAndEmail(CollectionDAO daoCollection) {
if (ex instanceof SQLIntegrityConstraintViolationException) {
LOG.info("Update for userName : {} skipped since already migrated", userEntity.getName());
} else {
throw ex;
LOG.error("Update for User failed. Username : {}", userEntity.getName());
}
}
}
Expand Down

0 comments on commit 1a0cd38

Please sign in to comment.