This is an automated email from the ASF dual-hosted git repository.

marcuse pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/cassandra.git


The following commit(s) were added to refs/heads/trunk by this push:
     new 8d8c6fbc37 Override the correct method to avoid retries in 
ConsistentBootstrapTest.coordinatorIsBehindTest
8d8c6fbc37 is described below

commit 8d8c6fbc37899ff77be6b3431f99f6951c4c05c2
Author: Marcus Eriksson <marc...@apache.org>
AuthorDate: Fri Mar 22 13:39:34 2024 +0100

    Override the correct method to avoid retries in 
ConsistentBootstrapTest.coordinatorIsBehindTest
    
    Patch by marcuse; reviewed by Alex Petrov for CASSANDRA-19343
---
 .../org/apache/cassandra/fuzz/ring/ConsistentBootstrapTest.java       | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/test/distributed/org/apache/cassandra/fuzz/ring/ConsistentBootstrapTest.java 
b/test/distributed/org/apache/cassandra/fuzz/ring/ConsistentBootstrapTest.java
index c03047478f..592d88be51 100644
--- 
a/test/distributed/org/apache/cassandra/fuzz/ring/ConsistentBootstrapTest.java
+++ 
b/test/distributed/org/apache/cassandra/fuzz/ring/ConsistentBootstrapTest.java
@@ -127,11 +127,11 @@ public class ConsistentBootstrapTest extends FuzzTestBase
 
             ReplayingHistoryBuilder harry = HarryHelper.dataGen(new 
InJvmSut(cluster, () -> 2, (t) -> false)
                                                                 {
-                                                                    public 
Object[][] execute(String statement, ConsistencyLevel cl, int coordinator, 
Object... bindings)
+                                                                    public 
Object[][] execute(String statement, ConsistencyLevel cl, int coordinator, int 
pagesize, Object... bindings)
                                                                     {
                                                                         try
                                                                         {
-                                                                            
return super.execute(statement, cl, coordinator, bindings);
+                                                                            
return super.execute(statement, cl, coordinator, pagesize, bindings);
                                                                         }
                                                                         catch 
(Throwable t)
                                                                         {


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org

Reply via email to