Add new cassandra_latest.yaml entries to latest tests

Both CASSANDRA-18120 and CASSANDRA-19946 updated cassandra_latest.yaml but not the corresponding test configs

 patch by Mick Semb Wever; reviewed by Brandon Williams, Tiago L. Alves for CASSANDRA-20002
This commit is contained in:
mck 2024-10-16 10:10:09 +02:00
parent 38857dc047
commit 2801ed3366
No known key found for this signature in database
GPG Key ID: E91335D77E3E87CB
2 changed files with 19 additions and 0 deletions

View File

@ -29,6 +29,17 @@
default:
inherits: trie
batchlog_endpoint_strategy: dynamic_remote
authenticator:
class_name : AllowAllAuthenticator
authorizer:
class_name: AllowAllAuthorizer
role_manager:
class_name: CassandraRoleManager
network_authorizer:
class_name: AllowAllNetworkAuthorizer
key_cache_size: 0MiB
memtable_allocation_type: offheap_objects

View File

@ -123,6 +123,14 @@ public class InstanceConfig implements IInstanceConfig
"configurations", Map.of(
"default", Map.of(
"class_name", "TrieMemtable"))))
.set("batchlog_endpoint_strategy", "dynamic_remote")
.set("authenticator", Map.of("class_name", "AllowAllAuthenticator"))
.set("authorizer", Map.of("class_name", "AllowAllAuthorizer"))
.set("role_manager", Map.of("class_name", "CassandraRoleManager"))
.set("network_authorizer", Map.of("class_name", "AllowAllNetworkAuthorizer"))
.set("key_cache_size", "0MiB")
.set("memtable_allocation_type", "offheap_objects")