GH-1146 - Fix identifier comparison in event publications cache key.

This commit is contained in:
Oliver Drotbohm
2025-04-23 12:12:29 +02:00
parent aa640d0c06
commit 711c8449fa

View File

@@ -386,7 +386,7 @@ public class DefaultEventPublicationRegistry
}
return this.event == that.event
&& this.identifier.equals(identifier);
&& this.identifier.equals(that.identifier);
}
/*