Automatic style fix

This commit is contained in:
robot-clickhouse 2023-11-13 19:05:20 +00:00 committed by Konstantin Bogdanov
parent 5bb4eb2383
commit cc3dfafd7b
Signed by: thevar1able
GPG Key ID: DB399448D9FE52F1

View File

@ -32,10 +32,13 @@ node6 = cluster.add_instance(
)
node7 = cluster.add_instance(
"node7",
user_configs=["configs/000-config_with_env_subst.xml", "configs/010-env_subst_override.xml"],
user_configs=[
"configs/000-config_with_env_subst.xml",
"configs/010-env_subst_override.xml",
],
env_variables={"MAX_QUERY_SIZE": "121212"},
instance_env_variables=True,
) # overridden with 424242
) # overridden with 424242
@pytest.fixture(scope="module")