Skip to content

Commit

Permalink
property visibility fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Mmuzaf committed Jun 6, 2023
1 parent de5377c commit 2402ec5
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Expand Up @@ -173,7 +173,7 @@ public class DatabaseDescriptor
*/
static final DurationSpec.LongMillisecondsBound LOWEST_ACCEPTED_TIMEOUT = new DurationSpec.LongMillisecondsBound(10L);

public static final int SPACE_UPPER_BOUND_MB = (int) (Runtime.getRuntime().maxMemory() / (16 * 1048576));
private static final int SPACE_UPPER_BOUND_MB = (int) (Runtime.getRuntime().maxMemory() / (16 * 1048576));

private static Supplier<IFailureDetector> newFailureDetector;
private static IEndpointSnitch snitch;
Expand Down
Expand Up @@ -39,7 +39,6 @@
import org.apache.cassandra.cql3.CQLTester;
import org.apache.cassandra.db.ConsistencyLevel;

import static org.apache.cassandra.config.DataStorageSpec.DataStorageUnit.MEBIBYTES;
import static org.apache.cassandra.db.virtual.SettingsTable.propertyToStringConverter;
import static org.apache.cassandra.db.virtual.SettingsTableTest.KS_NAME;
import static org.junit.Assert.assertEquals;
Expand Down

0 comments on commit 2402ec5

Please sign in to comment.