You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by av...@apache.org on 2021/02/23 11:01:25 UTC

[ignite] branch ignite-ducktape updated: IGNITE-13446 (#8517)

This is an automated email from the ASF dual-hosted git repository.

av 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 9493647  IGNITE-13446 (#8517)
9493647 is described below

commit 94936472789718500f208401cf11c27930c74e4c
Author: Sergei Ryzhov <s....@gmail.com>
AuthorDate: Tue Feb 23 14:01:01 2021 +0300

    IGNITE-13446 (#8517)
---
 modules/ducktests/tests/ignitetest/services/utils/config_template.py | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/modules/ducktests/tests/ignitetest/services/utils/config_template.py b/modules/ducktests/tests/ignitetest/services/utils/config_template.py
index 91c279f..4b1ff83 100644
--- a/modules/ducktests/tests/ignitetest/services/utils/config_template.py
+++ b/modules/ducktests/tests/ignitetest/services/utils/config_template.py
@@ -43,8 +43,9 @@ class ConfigTemplate:
         Render configuration.
         """
         kwargs.update(self.default_params)
-        res = self.template.render(**kwargs)
-        return res
+        unfiltered = self.template.render(**kwargs)
+
+        return '\n'.join(filter(lambda line: line.strip(), unfiltered.split('\n')))
 
 
 class IgniteServerConfigTemplate(ConfigTemplate):