From 2bd45560b67c6d5ba8ce49e61075470adaf7c591 Mon Sep 17 00:00:00 2001 From: muzarski Date: Wed, 12 Jun 2024 16:27:50 +0200 Subject: [PATCH] tests: ignore LWT test with tablets As of now, LWTs are not supported with tablets enabled. Marked the test for LWT + tablets with `#[ignore]`. (cherry picked from commit 9a6e3ee9e43a53d21a84870f0bc129cc0c603526) --- scylla/tests/integration/tablets.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scylla/tests/integration/tablets.rs b/scylla/tests/integration/tablets.rs index 00441181a5..5f91b43d39 100644 --- a/scylla/tests/integration/tablets.rs +++ b/scylla/tests/integration/tablets.rs @@ -479,9 +479,12 @@ async fn test_tablet_feedback_not_sent_for_unprepared_queries() { /// for every tablet. /// After that it sends 100 queries fro each tablet and verifies that only 1 shard on 1 node /// recevied requests for a given tablet. +/// +/// TODO: Remove #[ignore] once LWTs are supported with tablets. #[cfg(not(scylla_cloud_tests))] #[tokio::test] #[ntest::timeout(30000)] +#[ignore] async fn test_lwt_optimization_works_with_tablets() { setup_tracing(); const TABLET_COUNT: usize = 16;