Skip to content
Snippets Groups Projects
Commit a6e3735c authored by Peter Onyisi's avatar Peter Onyisi Committed by Graeme Stewart
Browse files

Fix bug breaking menu-aware monitoring recognition (AthenaMonitoring-02-01-23)

	* Fix bug breaking menu-aware monitoring recognition
	* tag AthenaMonitoring-02-01-23
parent 011d4898
No related branches found
No related tags found
No related merge requests found
......@@ -2199,9 +2199,9 @@ ManagedMonitorToolBase::
updateTriggersForGroups(std::vector<std::string>& vTrigChainNames) {
for (size_t i = 0; i < vTrigChainNames.size(); ++i) {
std::string& thisName = vTrigChainNames[i];
if (thisName.substr(0, 6) == "CATEGORY_") {
if (thisName.substr(0, 9) == "CATEGORY_") {
ATH_MSG_DEBUG("Found a trigger category: " << thisName << ". We will unpack it.");
std::vector<std::string> triggers = m_trigTranslator->translate(thisName.substr(6,std::string::npos));
std::vector<std::string> triggers = m_trigTranslator->translate(thisName.substr(9,std::string::npos));
std::ostringstream oss;
oss << "(";
for (size_t itrig = 0; itrig < triggers.size(); ++itrig) {
......
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