Correctly identify deadlocks
This commit is contained in:
parent
63677d1f47
commit
c756dfeb14
|
@ -37,7 +37,7 @@ class PostgresEngine(object):
|
||||||
|
|
||||||
def is_deadlock(self, error):
|
def is_deadlock(self, error):
|
||||||
if isinstance(error, self.module.DatabaseError):
|
if isinstance(error, self.module.DatabaseError):
|
||||||
return error.pgcode == "40P01"
|
return error.pgcode in ["40001", "40P01"]
|
||||||
return False
|
return False
|
||||||
|
|
||||||
def load_unicode(self, v):
|
def load_unicode(self, v):
|
||||||
|
|
Loading…
Reference in New Issue