This is an automated email from the ASF dual-hosted git repository.
nizhikov pushed a commit to branch ignite-ducktape
in repository https://gitbox.apache.org/repos/asf/ignite.git
The following commit(s) were added to refs/heads/ignite-ducktape by this push:
new 04d59bce IGNITE-14592 Minor fix.
04d59bce is described below
commit 04d59bce2a9c1ea14524a653636106d3425dbee4
Author: Nikolay <[email protected]>
AuthorDate: Mon Apr 19 19:52:08 2021 +0300
IGNITE-14592 Minor fix.
---
modules/ducktests/tests/ignitetest/services/utils/ignite_aware.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/ducktests/tests/ignitetest/services/utils/ignite_aware.py
b/modules/ducktests/tests/ignitetest/services/utils/ignite_aware.py
index f402e69..cc29379 100644
--- a/modules/ducktests/tests/ignitetest/services/utils/ignite_aware.py
+++ b/modules/ducktests/tests/ignitetest/services/utils/ignite_aware.py
@@ -171,7 +171,7 @@ class IgniteAwareService(BackgroundThreadService,
IgnitePathAware, metaclass=ABC
self._prepare_configs(node)
def _prepare_configs(self, node):
- config = self.config.prepare_for_env(globals=self.globals, node=node,
cluster=self)
+ config = self.config.prepare_for_env(test_globals=self.globals,
node=node, cluster=self)
for name, template in self.spec.config_templates:
config_txt = template.render(config_dir=self.config_dir,
work_dir=self.work_dir, config=config)