Skip to content

Commit

Permalink
Bump timeouts in CasCriticalSectionTest
Browse files Browse the repository at this point in the history
Patch by marcuse; reviewed by Brandon Williams for CASSANDRA-17453
  • Loading branch information
krummas committed Apr 28, 2022
1 parent 0c37176 commit bcf5662
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -51,9 +51,9 @@ public class CasCriticalSectionTest extends TestBaseImpl
public void criticalSectionTest() throws IOException, InterruptedException
{
try (Cluster cluster = init(Cluster.create(5, c -> c.set("paxos_variant", "v2")
.set("write_request_timeout_in_ms", 200L)
.set("cas_contention_timeout_in_ms", 200L)
.set("request_timeout_in_ms", 200L))))
.set("write_request_timeout_in_ms", 2000L)
.set("cas_contention_timeout_in_ms", 2000L)
.set("request_timeout_in_ms", 2000L))))
{
cluster.schemaChange("create table " + KEYSPACE + ".tbl (pk int, ck int, thread_id int, PRIMARY KEY(pk, ck))");

Expand Down

0 comments on commit bcf5662

Please sign in to comment.