mirror of
https://github.com/scylladb/scylladb.git
synced 2026-05-12 19:02:12 +00:00
In test_tablet_mv_replica_pairing_during_replace, after we create the tables, we want to wait for their tablets to distribute evenly across nodes and we have a wait_for for that. But we don't await this wait_for, so it's a no-op. This patch fixes it by adding the missing await. Refs scylladb/scylladb#23982 Refs scylladb/scylladb#23997 Closes scylladb/scylladb#24250