mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2025-01-02 21:30:47 -05:00
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
Block a user