diff --git a/tests/integration/test_replicated_fetches_network_partition/configs/merge_tree.xml b/tests/integration/test_replicated_fetches_network_partition/configs/merge_tree.xml new file mode 100644 index 00000000000..eba2c5e8ffc --- /dev/null +++ b/tests/integration/test_replicated_fetches_network_partition/configs/merge_tree.xml @@ -0,0 +1,6 @@ + + + 30 + 1 + + diff --git a/tests/integration/test_replicated_fetches_network_partition/configs/profiles.xml b/tests/integration/test_replicated_fetches_network_partition/configs/profiles.xml deleted file mode 100644 index 7abcf0bfde3..00000000000 --- a/tests/integration/test_replicated_fetches_network_partition/configs/profiles.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - 30 - - - - \ No newline at end of file diff --git a/tests/integration/test_replicated_fetches_network_partition/test.py b/tests/integration/test_replicated_fetches_network_partition/test.py index e42395c7af4..e493709dcbe 100644 --- a/tests/integration/test_replicated_fetches_network_partition/test.py +++ b/tests/integration/test_replicated_fetches_network_partition/test.py @@ -10,7 +10,7 @@ import string cluster = ClickHouseCluster(__file__) node1 = cluster.add_instance('node1', with_zookeeper=True) node2 = cluster.add_instance('node2', with_zookeeper=True) -node3 = cluster.add_instance('node3', with_zookeeper=True, user_configs=['configs/profiles.xml']) +node3 = cluster.add_instance('node3', with_zookeeper=True, main_configs=['configs/merge_tree.xml']) DEFAULT_MAX_THREADS_FOR_FETCH = 3