mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2025-08-07 21:42:20 -04:00
Load the current id in the IdGenerator constructor
Rather than loading them lazily. This allows us to remove all the yield statements and spurious arguments for the get_next methods. It also allows us to replace all instances of get_next_txn with get_next since get_next no longer needs to access the db.
This commit is contained in:
parent
bfdcc7b9b6
commit
54172924c8
12 changed files with 52 additions and 77 deletions
|
@ -84,7 +84,7 @@ class PusherStore(SQLBaseStore):
|
|||
app_display_name, device_display_name,
|
||||
pushkey, pushkey_ts, lang, data, profile_tag=""):
|
||||
try:
|
||||
next_id = yield self._pushers_id_gen.get_next()
|
||||
next_id = self._pushers_id_gen.get_next()
|
||||
yield self._simple_upsert(
|
||||
"pushers",
|
||||
dict(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue