From f2648ce77569e3786019197acbd07d40aabad814 Mon Sep 17 00:00:00 2001 From: Valentin Kuznetsov Date: Thu, 25 Aug 2022 10:39:27 -0400 Subject: [PATCH] Remove threadlocal parameter for SQLAlchemy as it is deprecated in new release --- src/python/WMCore/Database/DBFactory.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/python/WMCore/Database/DBFactory.py b/src/python/WMCore/Database/DBFactory.py index 705cb01a9c..b55fd4e95b 100644 --- a/src/python/WMCore/Database/DBFactory.py +++ b/src/python/WMCore/Database/DBFactory.py @@ -12,7 +12,6 @@ class DBFactory(object): # class variable _engineMap = {} _defaultEngineParams = {"convert_unicode" : True, - "strategy": "threadlocal", "pool_recycle": 7200} def __init__(self, logger, dburl=None, options={}):