Skip to content
Snippets Groups Projects
Commit 975e806a authored by Vakhtang Tsulaia's avatar Vakhtang Tsulaia
Browse files

Merge branch 'noOverlapCheck.StoreGate-20190118' into 'master'

StoreGate: Disable overlap check in WriteCondHandle.

See merge request atlas/athena!20425
parents 1346af5a b7937212
No related branches found
No related tags found
No related merge requests found
/*
Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
*/
#ifndef STOREGATE_WRITECONDHANDLE_H
......@@ -125,10 +125,15 @@ namespace SG {
return StatusCode::FAILURE;
}
else if (CondContBase::Category::isOverlap (sc)) {
#if 0
// Temporarily disable this check until caching issues with IOVDbSvc
// are sorted out.
msg << MSG::ERROR
<< "WriteCondHandle::record() : IOV ranges overlap."
<< endmsg;
return StatusCode::FAILURE;
#endif
sc = StatusCode::SUCCESS;
}
return sc;
......
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