Skip to content

Commit e1ae7d6

Browse files
committed
Fix now-incorrect Verb reference in MutationTrackingService
1 parent c6814f3 commit e1ae7d6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/java/org/apache/cassandra/replication/MutationTrackingService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1498,7 +1498,7 @@ private void run(Shard shard)
14981498
// TODO (expected): backoff, rate limits, per host and total
14991499
PullMutationsRequest request = new PullMutationsRequest(offsets);
15001500
logger.trace("Requesting pull mutation request from replica {} for missing offset {}", pullFrom, offsets);
1501-
MessagingService.instance().send(Message.out(Verb.PULL_MUTATIONS_REQ, request), pullFrom);
1501+
MessagingService.instance().send(Message.out(Verb.MT_PULL_MUTATIONS_REQ, request), pullFrom);
15021502
}
15031503
}
15041504
catch (Throwable throwable)

0 commit comments

Comments
 (0)