Skip to content

Commit

Permalink
SAK-49697: small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jkjanetschek committed Feb 13, 2024
1 parent 208e7e9 commit 59e327e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ public void hardDeleteAuthzData(String agentId) {
delete.where(cb.equal(authorizationData.get("agentIdString"), agentId));
try {
session.createQuery(delete).executeUpdate();
} catch ((IllegalStateException | PersistenceException e) {
} catch (IllegalStateException | PersistenceException e) {
log.warn("Could not delete samigo Authz Data with agentId: {}, {}", agentId, e.toString());
}
}
Expand Down

0 comments on commit 59e327e

Please sign in to comment.