This is an automated email from the ASF dual-hosted git repository. samt pushed a commit to branch cep-21-tcm in repository https://gitbox.apache.org/repos/asf/cassandra.git
commit 96e6a32566f22625d747afb18e607edc46ac707c Author: Marcus Eriksson <[email protected]> AuthorDate: Tue Apr 4 17:07:58 2023 +0200 [CEP-21] Fix tools tests patch by Marcus Eriksson; reviewed by Alex Petrov and Sam Tunnicliffe for CASSANDRA-18462 --- src/java/org/apache/cassandra/tcm/ClusterMetadataService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/java/org/apache/cassandra/tcm/ClusterMetadataService.java b/src/java/org/apache/cassandra/tcm/ClusterMetadataService.java index 7978a58741..09db32ac13 100644 --- a/src/java/org/apache/cassandra/tcm/ClusterMetadataService.java +++ b/src/java/org/apache/cassandra/tcm/ClusterMetadataService.java @@ -191,7 +191,7 @@ public class ClusterMetadataService ClusterMetadata emptyFromSystemTables = emptyWithSchemaFromSystemTables(); emptyFromSystemTables.schema.initializeKeyspaceInstances(DistributedSchema.empty(), loadSSTables); emptyFromSystemTables = emptyFromSystemTables.forceEpoch(Epoch.EMPTY); - LocalLog log = LocalLog.sync(emptyFromSystemTables, new AtomicLongBackedProcessor.InMemoryStorage(), true); + LocalLog log = LocalLog.sync(emptyFromSystemTables, new AtomicLongBackedProcessor.InMemoryStorage(), false); ClusterMetadataService cms = new ClusterMetadataService(new UniformRangePlacement(), MetadataSnapshots.NO_OP, log, --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
