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:20 UTC

[ignite] branch IGNITE-14509 created (now 9b7fe16)

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

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


      at 9b7fe16  IGNITE-14509 Minor fix.

This branch includes the following new commits:

     new 9b7fe16  IGNITE-14509 Minor fix.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


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

Posted by ni...@apache.org.
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)