This is an automated email from the ASF dual-hosted git repository. dcapwell pushed a commit to branch cep-15-accord in repository https://gitbox.apache.org/repos/asf/cassandra.git
The following commit(s) were added to refs/heads/cep-15-accord by this push: new a1d8b29cac Ninja fix: ExecuteSyncPoint.ExecuteBlocking changed its signature to have tracker before sync point but didnt update cassandra causing the build to fail to compile a1d8b29cac is described below commit a1d8b29cac7be71fe9baf2ab660932d0c397d754 Author: David Capwell <dcapw...@apache.org> AuthorDate: Tue Aug 13 09:19:30 2024 -0700 Ninja fix: ExecuteSyncPoint.ExecuteBlocking changed its signature to have tracker before sync point but didnt update cassandra causing the build to fail to compile --- .../apache/cassandra/service/accord/repair/RepairSyncPointAdapter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/java/org/apache/cassandra/service/accord/repair/RepairSyncPointAdapter.java b/src/java/org/apache/cassandra/service/accord/repair/RepairSyncPointAdapter.java index 8cc04f60da..76e29adbc5 100644 --- a/src/java/org/apache/cassandra/service/accord/repair/RepairSyncPointAdapter.java +++ b/src/java/org/apache/cassandra/service/accord/repair/RepairSyncPointAdapter.java @@ -61,7 +61,7 @@ public class RepairSyncPointAdapter<S extends Seekables<?, ?>> extends Coordinat public void execute(Node node, Topologies all, FullRoute<?> route, ExecutePath path, TxnId txnId, Txn txn, Timestamp executeAt, Deps deps, BiConsumer<? super SyncPoint<S>, Throwable> callback) { RequiredResponseTracker tracker = new RequiredResponseTracker(requiredResponses, all); - ExecuteSyncPoint.ExecuteBlocking<S> execute = new ExecuteSyncPoint.ExecuteBlocking<>(node, new SyncPoint<>(txnId, deps, (S) txn.keys(), route), tracker, executeAt); + ExecuteSyncPoint.ExecuteBlocking<S> execute = new ExecuteSyncPoint.ExecuteBlocking<>(node, tracker, new SyncPoint<>(txnId, deps, (S) txn.keys(), route), executeAt); execute.addCallback(callback); execute.start(); } --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org For additional commands, e-mail: commits-h...@cassandra.apache.org