本文整理汇总了Python中WMCore.Cache.WMConfigCache.ConfigCache.validate方法的典型用法代码示例。如果您正苦于以下问题:Python ConfigCache.validate方法的具体用法?Python ConfigCache.validate怎么用?Python ConfigCache.validate使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类WMCore.Cache.WMConfigCache.ConfigCache
的用法示例。
在下文中一共展示了ConfigCache.validate方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: validateConfigCacheExists
# 需要导入模块: from WMCore.Cache.WMConfigCache import ConfigCache [as 别名]
# 或者: from WMCore.Cache.WMConfigCache.ConfigCache import validate [as 别名]
def validateConfigCacheExists(self, configID, couchURL, couchDBName, getOutputModules=True):
"""
_validateConfigCacheExists_
If we have a configCache, we should probably try and load it.
"""
if configID == "" or configID == " ":
self.raiseValidationException(msg="ConfigCacheID is invalid and cannot be loaded")
if (couchURL, couchDBName) in self.config_cache:
configCache = self.config_cache[(couchURL, couchDBName)]
else:
configCache = ConfigCache(dbURL=couchURL, couchDBName=couchDBName, detail=getOutputModules)
self.config_cache[(couchURL, couchDBName)] = configCache
try:
# if dtail option is set return outputModules
return configCache.validate(configID)
except ConfigCacheException as ex:
self.raiseValidationException(ex.message())