This is an automated email from the ASF dual-hosted git repository. samt pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/cassandra-dtest.git
commit 6b4fb1abf6d9210197b719aa8ef4457196201967 Author: Sam Tunnicliffe <[email protected]> AuthorDate: Thu Nov 9 19:36:49 2023 +0000 [CEP-21] Bump max_mutation_size_in_kb after adding cluster metadata tables --- materialized_views_test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/materialized_views_test.py b/materialized_views_test.py index b5863ffb..b8d013bd 100644 --- a/materialized_views_test.py +++ b/materialized_views_test.py @@ -722,7 +722,7 @@ class TestMaterializedViews(Tester): assert_one(session, "SELECT * FROM t_by_v WHERE id = {} and v = {}".format(i, j), [j, i]) node4 = new_node(self.cluster, data_center="dc1") - node4.set_configuration_options(values={'max_mutation_size_in_kb': 25}) # CASSANDRA-11670 + node4.set_configuration_options(values={'max_mutation_size_in_kb': 30}) # CASSANDRA-11670 logger.debug("Start join at {}".format(time.strftime("%H:%M:%S"))) node4.start(wait_for_binary_proto=True, jvm_args=["-Dcassandra.migration_task_wait_in_seconds={}".format(MIGRATION_WAIT)]) @@ -775,7 +775,7 @@ class TestMaterializedViews(Tester): assert_one(session, "SELECT * FROM t_by_v WHERE id = {} and v = {}".format(i, j), [j, i]) node4 = new_node(self.cluster, data_center="dc1") - node4.set_configuration_options(values={'max_mutation_size_in_kb': 25}) # CASSANDRA-11670 + node4.set_configuration_options(values={'max_mutation_size_in_kb': 30}) # CASSANDRA-11670 logger.debug("Start join at {}".format(time.strftime("%H:%M:%S"))) node4.start(wait_for_binary_proto=True, jvm_args=["-Dcassandra.migration_task_wait_in_seconds={}".format(MIGRATION_WAIT)]) --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
