We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ef8ff6 commit 019b35dCopy full SHA for 019b35d
Framework/src/ObjectsManager.cxx
@@ -57,7 +57,7 @@ void ObjectsManager::updateServiceDiscovery()
57
// prepare the string of comma separated objects and publish it
58
string objects;
59
for (auto mo : mMonitorObjects) {
60
- objects += string(mo->GetName()) + ",";
+ objects += mTaskConfig.taskName + "/" + mo->GetName() + ",";
61
}
62
objects.pop_back();
63
mServiceDiscovery->_register(objects);
0 commit comments