This commit is contained in:
yumoqing 2024-11-08 20:18:19 +08:00
parent eeade16de9
commit 19f54c9ebf
2 changed files with 4 additions and 4 deletions

View File

@ -12,6 +12,7 @@ from appPublic.Singleton import SingletonDecorator
from appPublic.myjson import loadf from appPublic.myjson import loadf
from appPublic.jsonConfig import getConfig from appPublic.jsonConfig import getConfig
from appPublic.rc4 import unpassword from appPublic.rc4 import unpassword
from appPublic.log import exception
import threading import threading
from .sor import SQLor from .sor import SQLor
@ -208,8 +209,7 @@ class DBPools:
try: try:
yield sqlor yield sqlor
except Exception as e: except Exception as e:
print_exc() exception(f'sqlorContext():EXCEPTION{e}')
print('Exeception=',e)
if sqlor and sqlor.dataChanged: if sqlor and sqlor.dataChanged:
await sqlor.rollback() await sqlor.rollback()
finally: finally:

View File

@ -12,6 +12,7 @@ from appPublic.Singleton import SingletonDecorator
from appPublic.myjson import loadf from appPublic.myjson import loadf
from appPublic.jsonConfig import getConfig from appPublic.jsonConfig import getConfig
from appPublic.rc4 import unpassword from appPublic.rc4 import unpassword
from appPublic.log import exception
import threading import threading
from .sor import SQLor from .sor import SQLor
@ -208,8 +209,7 @@ class DBPools:
try: try:
yield sqlor yield sqlor
except Exception as e: except Exception as e:
print_exc() exception(f'sqlorContext():EXCEPTION{e}')
print('Exeception=',e)
if sqlor and sqlor.dataChanged: if sqlor and sqlor.dataChanged:
await sqlor.rollback() await sqlor.rollback()
finally: finally: