mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-03 12:24:50 -04: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 = SQLBaseStore.__dict__["_simple_update_one"]
|
||||||
_simple_update_one_txn = SQLBaseStore.__dict__["_simple_update_one_txn"]
|
_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 runInteraction(self, desc, func, *args, **kwargs):
|
||||||
def r(conn):
|
def r(conn):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue