mirror of
https://github.com/element-hq/synapse.git
synced 2024-12-14 11:57:44 +00:00
Fix port script
We changed _simple_update_one_txn to use _simple_update_txn but didn't yank it out in the port script. Fixes #2565
This commit is contained in:
parent
f009df23ec
commit
37d766aedd
1 changed files with 1 additions and 0 deletions
|
@ -112,6 +112,7 @@ class Store(object):
|
|||
|
||||
_simple_update_one = SQLBaseStore.__dict__["_simple_update_one"]
|
||||
_simple_update_one_txn = SQLBaseStore.__dict__["_simple_update_one_txn"]
|
||||
_simple_update_txn = SQLBaseStore.__dict__["_simple_update_txn"]
|
||||
|
||||
def runInteraction(self, desc, func, *args, **kwargs):
|
||||
def r(conn):
|
||||
|
|
Loading…
Reference in a new issue