Skip to content
Snippets Groups Projects
Commit d513b5cf authored by Christian Dreher's avatar Christian Dreher
Browse files

fix: Ping memory before adding it to complete list.

parent e684d16c
No related branches found
No related tags found
2 merge requests!137Armem/dev,!129Resolve "ArMemMemoryViewer: Show multiple memories"
......@@ -91,7 +91,15 @@ namespace armarx::armem::mns
for (const auto& [name, info] : memoryMap)
{
result.proxies[name] = info.proxy;
try
{
info.proxy->ice_ping();
result.proxies[name] = info.proxy;
}
catch (const Ice::Exception&)
{
;
}
}
return result;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment