Claudenw commented on code in PR #2199:
URL: https://github.com/apache/cassandra/pull/2199#discussion_r1131327104


##########
test/unit/org/apache/cassandra/config/YamlConfigurationLoaderTest.java:
##########
@@ -169,6 +171,21 @@ public void readThresholdsFromConfig()
         assertThat(c.row_index_read_size_fail_threshold).isEqualTo(new 
DataStorageSpec.LongBytesBound(1 << 13, KIBIBYTES));
     }
 
+    @Test
+    public void readSSTableCompressionFromConfig()
+    {
+        Config c = load("test/conf/cassandra.yaml");
+
+        assertNotNull(c.sstable_compressor);
+        assertEquals("org.apache.cassandra.io.compress.LZ4Compressor", 
c.sstable_compressor.class_name);

Review Comment:
   Reworked and moved to `SSTableCompressionOptionsTest`



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to