mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2025-01-02 21:50: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):
|
||||
if isinstance(error, self.module.DatabaseError):
|
||||
return error.pgcode == "40P01"
|
||||
return error.pgcode in ["40001", "40P01"]
|
||||
return False
|
||||
|
||||
def load_unicode(self, v):
|
||||
|
Loading…
Reference in New Issue
Block a user