diff options
author | Mark Haines <mjark@negativecurvature.net> | 2016-03-01 14:54:29 +0000 |
---|---|---|
committer | Mark Haines <mjark@negativecurvature.net> | 2016-03-01 14:54:29 +0000 |
commit | d50ca1b1edf45b630715f1847435eb493842bbdc (patch) | |
tree | 5a291e62c4615275e7fc63284b088d82f069c3a9 /synapse/storage/push_rule.py | |
parent | Merge pull request #611 from matrix-org/erikj/expiring_cache_size (diff) | |
parent | Load the current id in the IdGenerator constructor (diff) | |
download | synapse-d50ca1b1edf45b630715f1847435eb493842bbdc.tar.xz |
Merge pull request #613 from matrix-org/markjh/yield
Load the current id in the IdGenerator constructor
Diffstat (limited to 'synapse/storage/push_rule.py')
-rw-r--r-- | synapse/storage/push_rule.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/storage/push_rule.py b/synapse/storage/push_rule.py index bb5c14d912..56e69495b1 100644 --- a/synapse/storage/push_rule.py +++ b/synapse/storage/push_rule.py @@ -226,7 +226,7 @@ class PushRuleStore(SQLBaseStore): if txn.rowcount == 0: # We didn't update a row with the given rule_id so insert one - push_rule_id = self._push_rule_id_gen.get_next_txn(txn) + push_rule_id = self._push_rule_id_gen.get_next() self._simple_insert_txn( txn, @@ -279,7 +279,7 @@ class PushRuleStore(SQLBaseStore): defer.returnValue(ret) def _set_push_rule_enabled_txn(self, txn, user_id, rule_id, enabled): - new_id = self._push_rules_enable_id_gen.get_next_txn(txn) + new_id = self._push_rules_enable_id_gen.get_next() self._simple_upsert_txn( txn, "push_rules_enable", |