Skip to content
Snippets Groups Projects
Commit b6a37fc2 authored by Siarhei Harkusha's avatar Siarhei Harkusha
Browse files

TileConditions: Fix Tile COOL manager

parent 600f5a94
5 merge requests!69091Fix correlated smearing bug in JER in JetUncertainties in 22.0,!58791DataQualityConfigurations: Modify L1Calo config for web display,!51674Fixing hotSpotInHIST for Run3 HIST,!50012RecExConfig: Adjust log message levels from GetRunNumber and GetLBNumber,!47630TileConditions: Fix Tile COOL manager
# Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
# Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
#file: TileCoolMgr.py
#author: nils.gollub@cern.ch
......@@ -145,8 +145,7 @@ class TileCoolMgr(object):
else:
self.__log.info("Setting dbConn for condId \'%s\' to \'%s\'", condId, dbConn)
idInfo[1] = dbConn
from string import find
if find(dbConn,".db")>0:
if dbConn.endswith(".db"):
self.__log.info("The data source looks like sqlite file (.db), setting folder type to Sqlite")
self.__idDict[condId][4] = "Sqlite"
......
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