Commit 6762900
Increase numberOfNodes in SchemaChangesCCTest
When running this test with newer Scylla, the drop keyspace query times out.
This is because the cluster lacks raft quorum, although the returned
`OperationTimedOutException` does not inform about that.
To observe this you need to enable debug logging and then you may find
message like this one before the exception:
```
[cluster2-nio-worker-3] DEBUG com.datastax.driver.core.Connection - Connection[/127.0.1.2:40269-1, inFlight=0, closed=false] Response received on stream 832 but no handler set anymore (either the request has timed out or it was closed due to another error). Received message is ERROR SERVER_ERROR: group [e4fdf001-521a-11f0-b1fb-7d275bcabf53] raft operation [read_barrier] timed out, there is no raft quorum, total voters count 2, alive voters count 1, dead voters [127.0.1.1]
```
Increasing the number of nodes to 3 allows the cluster to maintain the raft
quorum and does not impact the test itself.1 parent 5aff138 commit 6762900
File tree
1 file changed
+1
-1
lines changed- driver-core/src/test/java/com/datastax/driver/core
1 file changed
+1
-1
lines changedLines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
33 | 33 | | |
34 | 34 | | |
35 | 35 | | |
36 | | - | |
| 36 | + | |
37 | 37 | | |
38 | 38 | | |
39 | 39 | | |
| |||
0 commit comments