From ce8ead34a647528ac3cffedf609e11d0d8ea2e2b Mon Sep 17 00:00:00 2001 From: Alexey Milovidov Date: Mon, 9 Oct 2023 16:00:02 +0300 Subject: [PATCH] Update cluster.py --- tests/integration/helpers/cluster.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/helpers/cluster.py b/tests/integration/helpers/cluster.py index 7931e3b4404..8678f59639c 100644 --- a/tests/integration/helpers/cluster.py +++ b/tests/integration/helpers/cluster.py @@ -4479,7 +4479,7 @@ class ClickHouseInstance: # The current implementation of `self.env_variables` is not exclusive. Meaning the variables # are shared with all nodes within the same cluster, even if it is specified for a single node. # In order not to break the existing tests, the `self.instance_env_variables` option was added as a workaround. - # IMHO, it would be better to make `self.env_variables` exclusive by defaultand remove the `self.instance_env_variables` option. + # IMHO, it would be better to make `self.env_variables` exclusive by default and remove the `self.instance_env_variables` option. if self.instance_env_variables: self.env_file = p.abspath(p.join(self.path, ".env")) _create_env_file(self.env_file, self.env_variables)