ninja - don't use non-durable keyspace params for witnesses

This commit is contained in:
Blake Eggleston 2026-06-23 10:21:46 -07:00
parent e66fb9eb0d
commit f8eb131aa4
1 changed files with 1 additions and 1 deletions

View File

@ -141,7 +141,7 @@ public final class KeyspaceParams
public static KeyspaceParams simpleWitness(String replicationFactor)
{
return new KeyspaceParams(false, ReplicationParams.simple(replicationFactor), FastPathStrategy.simple(), ReplicationType.tracked);
return new KeyspaceParams(true, ReplicationParams.simple(replicationFactor), FastPathStrategy.simple(), ReplicationType.tracked);
}
public static KeyspaceParams simpleTransient(int replicationFactor)