Skip to content

Commit

Permalink
Fix IllegalStateException in PersistentReplicator
Browse files Browse the repository at this point in the history
  • Loading branch information
lhotari committed Mar 31, 2021
1 parent 4c204c2 commit 4563683
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -760,7 +760,7 @@ private void checkReplicatedSubscriptionMarker(Position position, MessageImpl<?>

int markerType = msg.getMessageBuilder().getMarkerType();

if (!remoteCluster.equals(msg.getMessageBuilder().getReplicatedFrom())) {
if (!remoteCluster.equals(msg.getReplicatedFrom())) {
// Only consider markers that are coming from the same cluster that this
// replicator instance is assigned to.
// All the replicators will see all the markers, but we need to only process
Expand Down

0 comments on commit 4563683

Please sign in to comment.