dcapwell commented on code in PR #4220: URL: https://github.com/apache/cassandra/pull/4220#discussion_r2205899476
########## src/java/org/apache/cassandra/service/StorageProxy.java: ########## @@ -1248,20 +1249,22 @@ public static void mutateWithTriggers(List<? extends IMutation> mutations, if (augmented != null || mutateAtomically || updatesView) mutateAtomically(augmented != null ? augmented : (List<Mutation>)mutations, consistencyLevel, updatesView, requestTime); else - dispatchMutationsWithRetryOnDifferentSystem(mutations, consistencyLevel, requestTime); + dispatchMutationsWithRetryOnDifferentSystem(mutations, consistencyLevel, requestTime, preserveTimestamps); } - public static void dispatchMutationsWithRetryOnDifferentSystem(List<? extends IMutation> mutations, ConsistencyLevel consistencyLevel, Dispatcher.RequestTime requestTime) + public static void dispatchMutationsWithRetryOnDifferentSystem(List<? extends IMutation> mutations, ConsistencyLevel consistencyLevel, Dispatcher.RequestTime requestTime, boolean preserveTimestamps) { while (true) { ClusterMetadata cm = ClusterMetadata.current(); try { - SplitMutations splitMutations = splitMutationsIntoAccordAndNormal(cm, (List<IMutation>)mutations); + SplitMutations<?> splitMutations = splitMutationsIntoAccordAndNormal(cm, (List<IMutation>)mutations); Review Comment: just fixing intellij warning -- 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: pr-unsubscr...@cassandra.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: pr-unsubscr...@cassandra.apache.org For additional commands, e-mail: pr-h...@cassandra.apache.org