enable callback tracebacks

This commit is contained in:
Victor Shyba 2019-11-21 12:55:16 -03:00 committed by Lex Berezhny
parent 0723026a56
commit ece5082096
3 changed files with 4 additions and 1 deletions

View file

@ -34,7 +34,7 @@ class SQLiteInterruptedError(sqlite3.OperationalError):
ATTRIBUTE_ARRAY_MAX_LENGTH = 100
sqlite3.enable_callback_tracebacks(True)
INTEGER_PARAMS = {
'height', 'creation_height', 'activation_height', 'expiration_height',

View file

@ -22,6 +22,7 @@ from .common import CLAIM_TYPES, STREAM_TYPES, COMMON_TAGS
ATTRIBUTE_ARRAY_MAX_LENGTH = 100
sqlite3.enable_callback_tracebacks(True)
class SQLDB:

View file

@ -11,6 +11,7 @@ from torba.client.basetransaction import BaseTransaction, TXRefImmutable
from torba.client.bip32 import PubKey
log = logging.getLogger(__name__)
sqlite3.enable_callback_tracebacks(True)
class AIOSQLite:
@ -24,6 +25,7 @@ class AIOSQLite:
@classmethod
async def connect(cls, path: Union[bytes, str], *args, **kwargs):
sqlite3.enable_callback_tracebacks(True)
def _connect():
return sqlite3.connect(path, *args, **kwargs)
db = cls()