This is an automated email from the ASF dual-hosted git repository.
zstan 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 7083e10bdbb IGNITE-28029 Fix broken
ClusterNodeTestSuite.IgniteGetAttribute (#12834)
7083e10bdbb is described below
commit 7083e10bdbb1957e549e77fe1fa8bc87a7f0d5cd
Author: Dmitry Werner <[email protected]>
AuthorDate: Tue Mar 3 09:41:15 2026 +0500
IGNITE-28029 Fix broken ClusterNodeTestSuite.IgniteGetAttribute (#12834)
---
modules/platforms/cpp/core-test/src/cluster_node_test.cpp | 6 ------
1 file changed, 6 deletions(-)
diff --git a/modules/platforms/cpp/core-test/src/cluster_node_test.cpp
b/modules/platforms/cpp/core-test/src/cluster_node_test.cpp
index dd0841881d5..d75fc4830de 100644
--- a/modules/platforms/cpp/core-test/src/cluster_node_test.cpp
+++ b/modules/platforms/cpp/core-test/src/cluster_node_test.cpp
@@ -119,12 +119,6 @@ BOOST_AUTO_TEST_CASE(IgniteGetAttribute)
BOOST_REQUIRE(nodes[0].IsAttributeSet(ATTR_GRID_NAME));
std::string gridName = nodes[0].GetAttribute<std::string>(ATTR_GRID_NAME);
BOOST_REQUIRE(!gridName.empty());
-
-
- const std::string ATTR_PHY_RAM = "org.apache.ignite.phy.ram";
- BOOST_REQUIRE(nodes[0].IsAttributeSet(ATTR_PHY_RAM));
- int64_t phyRam = nodes[0].GetAttribute<int64_t>(ATTR_PHY_RAM);
- BOOST_REQUIRE(phyRam > 0);
}
BOOST_AUTO_TEST_CASE(IgniteGetAttributes)