From 82ba6d2919949dea8fbf467e55d342072be9188d Mon Sep 17 00:00:00 2001 From: Israel Fruchter Date: Tue, 2 Jul 2024 22:17:30 +0300 Subject: [PATCH] tests/*cqlengine/management: fix parameters passed to compaction at some point scylla started validation of the arguments to compaction and newer versions rejects the values passed from this test chnaged it to something within the values expected --- .../cqlengine/management/test_compaction_settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/cqlengine/management/test_compaction_settings.py b/tests/integration/cqlengine/management/test_compaction_settings.py index 63161643f..1633bcec5 100644 --- a/tests/integration/cqlengine/management/test_compaction_settings.py +++ b/tests/integration/cqlengine/management/test_compaction_settings.py @@ -61,7 +61,7 @@ class SizeTieredCompactionChangesDetectionTest(Model): __options__ = {'compaction': {'class': 'org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy', 'bucket_high': '20', - 'bucket_low': '10', + 'bucket_low': '0.5', 'max_threshold': '200', 'min_threshold': '100', 'min_sstable_size': '1000',