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

[ignite] branch master updated: IGNITE-15865: fixed persistence_upgrade_test.py (#9548)

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

dpavlov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ignite.git


The following commit(s) were added to refs/heads/master by this push:
     new 4b1e8a9  IGNITE-15865: fixed persistence_upgrade_test.py (#9548)
4b1e8a9 is described below

commit 4b1e8a98c0076390a5556e098a831b01dbd367da
Author: Sergei Ryzhov <s....@gmail.com>
AuthorDate: Tue Nov 2 20:20:44 2021 +0300

    IGNITE-15865: fixed persistence_upgrade_test.py (#9548)
---
 modules/ducktests/tests/ignitetest/services/utils/ignite_spec.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/ducktests/tests/ignitetest/services/utils/ignite_spec.py b/modules/ducktests/tests/ignitetest/services/utils/ignite_spec.py
index 2cc9d21..f5f9be6 100644
--- a/modules/ducktests/tests/ignitetest/services/utils/ignite_spec.py
+++ b/modules/ducktests/tests/ignitetest/services/utils/ignite_spec.py
@@ -92,7 +92,7 @@ class IgniteSpec(metaclass=ABCMeta):
         self._add_jvm_opts(["-DIGNITE_SUCCESS_FILE=" + os.path.join(self.service.persistent_root, "success_file"),
                             "-Dlog4j.configDebug=true"])
 
-        if self.service.config.service_type == IgniteServiceType.THIN_CLIENT:
+        if self.service.config and self.service.config.service_type == IgniteServiceType.THIN_CLIENT:
             self._add_jvm_opts(["-Dlog4j.configuration=file:" + self.service.log_config_file])
 
         if service.context.globals.get(JFR_ENABLED, False):