summary refs log tree commit diff
path: root/synapse/storage/__init__.py
diff options
context:
space:
mode:
authorErik Johnston <erikj@jki.re>2018-02-20 18:08:20 +0000
committerGitHub <noreply@github.com>2018-02-20 18:08:20 +0000
commita2b25de68d954dc1955c1d8d1f6a69ef97075f8c (patch)
tree8b8ba40fc5d2df1a88aadcf46b26fe9ac8be45db /synapse/storage/__init__.py
parentMerge pull request #2868 from matrix-org/erikj/refactor_media_storage (diff)
parentRaise exception in abstract method (diff)
downloadsynapse-a2b25de68d954dc1955c1d8d1f6a69ef97075f8c.tar.xz
Merge pull request #2896 from matrix-org/erikj/split_receipts_store
Split ReceiptsStore
Diffstat (limited to 'synapse/storage/__init__.py')
-rw-r--r--synapse/storage/__init__.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/synapse/storage/__init__.py b/synapse/storage/__init__.py
index f8fbd02ceb..e1c4fe086e 100644
--- a/synapse/storage/__init__.py
+++ b/synapse/storage/__init__.py
@@ -104,9 +104,6 @@ class DataStore(RoomMemberStore, RoomStore,
             db_conn, "events", "stream_ordering", step=-1,
             extra_tables=[("ex_outlier_stream", "event_stream_ordering")]
         )
-        self._receipts_id_gen = StreamIdGenerator(
-            db_conn, "receipts_linearized", "stream_id"
-        )
         self._account_data_id_gen = StreamIdGenerator(
             db_conn, "account_data_max_stream_id", "stream_id"
         )