You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by ni...@apache.org on 2021/04/19 14:15:21 UTC

[ignite] 01/01: IGNITE-14509 Minor fix.

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

nizhikov pushed a commit to branch IGNITE-14509
in repository https://gitbox.apache.org/repos/asf/ignite.git

commit 9b7fe16dd1e368dc9f572c980b37accf532bd409
Author: Nikolay Izhikov <ni...@apache.org>
AuthorDate: Mon Apr 19 17:14:50 2021 +0300

    IGNITE-14509 Minor fix.
---
 modules/ducktests/tests/ignitetest/services/utils/path.py | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/modules/ducktests/tests/ignitetest/services/utils/path.py b/modules/ducktests/tests/ignitetest/services/utils/path.py
index 7e559b1..45c0763 100644
--- a/modules/ducktests/tests/ignitetest/services/utils/path.py
+++ b/modules/ducktests/tests/ignitetest/services/utils/path.py
@@ -153,6 +153,8 @@ class IgnitePathAware(PathAware, metaclass=ABCMeta):
     """
     IGNITE_CONFIG_NAME = "ignite-config.xml"
 
+    IGNITE_THIN_CLIENT_CONFIG_NAME = "ignite-thin-config.xml"
+
     IGNITE_LOG_CONFIG_NAME = "ignite-log4j.xml"
 
     @property
@@ -160,6 +162,10 @@ class IgnitePathAware(PathAware, metaclass=ABCMeta):
         return os.path.join(self.config_dir, IgnitePathAware.IGNITE_CONFIG_NAME)
 
     @property
+    def thin_client_config_file(self):
+        return os.path.join(self.config_dir, IgnitePathAware.IGNITE_THIN_CLIENT_CONFIG_NAME)
+
+    @property
     def log_config_file(self):
         return os.path.join(self.config_dir, IgnitePathAware.IGNITE_LOG_CONFIG_NAME)