Github user bdeggleston commented on a diff in the pull request:

    https://github.com/apache/cassandra/pull/224#discussion_r189108331
  
    --- Diff: src/java/org/apache/cassandra/net/MessagingService.java ---
    @@ -591,8 +592,9 @@ public void run()
     
                     if (expiredCallbackInfo.shouldHint())
                     {
    -                    Mutation mutation = ((WriteCallbackInfo) 
expiredCallbackInfo).mutation();
    -                    return StorageProxy.submitHint(mutation, 
expiredCallbackInfo.target, null);
    +                    WriteCallbackInfo writeCallbackInfo = 
((WriteCallbackInfo) expiredCallbackInfo);
    +                    Mutation mutation = writeCallbackInfo.mutation();
    --- End diff --
    
    we need to get both the mutation and the replica out of the write callback 
info here


---

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to