Files
scylladb/test/cluster
Wojciech Mitros 46a712d6d4 test: get SC raft group leader info from raft group members
To find the raft group leader of a group, a node must be a member of this group.
In a few test cases in test_strong_consistency.py we try to get the leader info
without knowing raft group members, so we may initially fail and we retry on
another node. This is inefficient - trying to get the leader from a non-member
ends in a timeout for the leader check, so the test case takes an additional 60s.
In this patch we avoid this by checking raft group members (i.e. tablet replicas)
before trying to get the leader, and then only get the leader from one of the
replicas. On average, this should speed up the test_strong_consistency.py by 85s.

Fixes: SCYLLADB-2266
Fixes: SCYLLADB-2268

Closes scylladb/scylladb#30165
2026-06-02 13:47:16 +02:00
..
2026-05-18 12:23:40 +02:00