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/01/22 11:06:29 UTC

[ignite] branch ignite-ducktape updated: IGNITE-14012 fix ducktape jmx_tools MBean pattern (#8672)

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 f904aa2  IGNITE-14012 fix ducktape jmx_tools MBean pattern (#8672)
f904aa2 is described below

commit f904aa29733932b05d93ed7ceded426d006ebc84
Author: Mikhail Filatov <mi...@mfilatov.ru>
AuthorDate: Fri Jan 22 14:05:58 2021 +0300

    IGNITE-14012 fix ducktape jmx_tools MBean pattern (#8672)
---
 modules/ducktests/tests/ignitetest/services/utils/jmx_utils.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/modules/ducktests/tests/ignitetest/services/utils/jmx_utils.py b/modules/ducktests/tests/ignitetest/services/utils/jmx_utils.py
index a14d96d..c45fc90 100644
--- a/modules/ducktests/tests/ignitetest/services/utils/jmx_utils.py
+++ b/modules/ducktests/tests/ignitetest/services/utils/jmx_utils.py
@@ -187,7 +187,7 @@ class IgniteJmxMixin:
         """
         :return: IgniteKernal MBean.
         """
-        return self.jmx_client().find_mbean('.*group=Kernal,name=IgniteKernal')
+        return self.jmx_client().find_mbean('.*group=Kernal.*name=IgniteKernal')
 
     @memoize
     def disco_mbean(self):
@@ -197,6 +197,6 @@ class IgniteJmxMixin:
         disco_spi = next(self.kernal_mbean().DiscoverySpiFormatted).strip()
 
         if 'ZookeeperDiscoverySpi' in disco_spi:
-            return self.jmx_client().find_mbean('.*group=SPIs,name=ZookeeperDiscoverySpi')
+            return self.jmx_client().find_mbean('.*group=SPIs.*name=ZookeeperDiscoverySpi')
 
-        return self.jmx_client().find_mbean('.*group=SPIs,name=TcpDiscoverySpi')
+        return self.jmx_client().find_mbean('.*group=SPIs.*name=TcpDiscoverySpi')