Skip to content

Commit

Permalink
Fix midPoint-Quartz task synchronization
Browse files Browse the repository at this point in the history
Due to a bug, handler-less tasks were unnecessarily updated
(and some updates were missed). This is now fixed.

This resolves MID-8941.
  • Loading branch information
mederly committed Sep 18, 2023
1 parent a441f83 commit 4ebf4d4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ private static boolean triggerDataMapsDiffer(Trigger triggerAsIs, Trigger trigge
boolean lbrDiffer = toBe.getBoolean(KEY_LOOSELY_BOUND_RECURRENT) != asIs.getBoolean(KEY_LOOSELY_BOUND_RECURRENT);
String tbh = toBe.getString(KEY_HANDLER_URI);
String aih = asIs.getString(KEY_HANDLER_URI);
boolean handlersDiffer = tbh != null ? !tbh.equals(aih) : aih == null;
boolean handlersDiffer = !Objects.equals(tbh, aih);

if (LOGGER.isTraceEnabled()) {
if (scheduleDiffer) {
Expand Down

0 comments on commit 4ebf4d4

Please sign in to comment.