mirror of
https://github.com/scylladb/scylladb.git
synced 2026-06-05 14:33:08 +00:00
With Raft-topology enabled, test_remove_garbage_group0_members has been flaky when it should always fail. This has been discussed in #14614. Disabling Raft-topology in the topology suite is problematic because the initial cluster size is non-zero, so we have nodes that already use Raft-topology at the beginning of the test. Therefore, we move test_topology_remove_garbage_group0.py to the topology_custom suite. Apart from disabling Raft-topology, we have to start 4 servers instead of 1 because of the different initial cluster sizes. Closes #14692