summary refs log tree commit diff
path: root/synapse/storage
diff options
context:
space:
mode:
authorMark Haines <mjark@negativecurvature.net>2016-04-07 17:30:37 +0100
committerMark Haines <mjark@negativecurvature.net>2016-04-07 17:30:37 +0100
commitda84fa3d747cf7c926b08abb17ed68a6dd195b24 (patch)
tree8641d93b820f619f28b8cd588e7b532839b955c4 /synapse/storage
parentMerge pull request #704 from matrix-org/markh/slaveIII (diff)
parentAdd tests for redactions (diff)
downloadsynapse-da84fa3d747cf7c926b08abb17ed68a6dd195b24.tar.xz
Merge pull request #706 from matrix-org/markjh/slaveIV
Add tests for redactions
Diffstat (limited to 'synapse/storage')
-rw-r--r--synapse/storage/util/id_generators.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/util/id_generators.py b/synapse/storage/util/id_generators.py

index f69f1cdad4..46cf93ff87 100644 --- a/synapse/storage/util/id_generators.py +++ b/synapse/storage/util/id_generators.py
@@ -112,7 +112,7 @@ class StreamIdGenerator(object): self._current + self._step * (n + 1), self._step ) - self._current += n + self._current += n * self._step for next_id in next_ids: self._unfinished_ids.append(next_id)