Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Framework/src/CcdbDatabase.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,7 @@ std::shared_ptr<core::MonitorObject> CcdbDatabase::retrieveMO(std::string taskNa
// TODO should we remove the headers we know are general such as ETag and qc_task_name ?
mo->addMetadata(headers);
}
mo->setIsOwner(true);
return mo;
}

Expand Down
1 change: 1 addition & 0 deletions Framework/src/CheckRunner.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,7 @@ void CheckRunner::prepareCacheData(framework::InputRecord& inputRecord)
}

if (mo) {
mo->setIsOwner(true);
mMonitorObjects[mo->getFullName()] = mo;
updatePolicyManager.updateObjectRevision(mo->getFullName());
mTotalNumberObjectsReceived++;
Expand Down