maedhroz commented on code in PR #3526:
URL: https://github.com/apache/cassandra/pull/3526#discussion_r1752771420
##########
src/java/org/apache/cassandra/db/CounterMutationVerbHandler.java:
##########
@@ -21,18 +21,18 @@
import org.slf4j.LoggerFactory;
import org.apache.cassandra.config.DatabaseDescriptor;
-import org.apache.cassandra.net.IVerbHandler;
+import org.apache.cassandra.locator.InetAddressAndPort;
import org.apache.cassandra.net.Message;
import org.apache.cassandra.net.MessagingService;
import org.apache.cassandra.service.StorageProxy;
-public class CounterMutationVerbHandler implements
IVerbHandler<CounterMutation>
+public class CounterMutationVerbHandler extends
AbstractMutationVerbHandler<CounterMutation>
{
public static final CounterMutationVerbHandler instance = new
CounterMutationVerbHandler();
private static final Logger logger =
LoggerFactory.getLogger(CounterMutationVerbHandler.class);
- public void doVerb(final Message<CounterMutation> message)
+ protected void applyMutation(final Message<CounterMutation> message,
InetAddressAndPort respondToAddress)
Review Comment:
TODO: add `@Override`
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]