summary refs log tree commit diff
path: root/synapse/storage/_base.py
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2014-12-15 13:55:22 +0000
committerErik Johnston <erik@matrix.org>2014-12-15 13:55:22 +0000
commitc8dd3314d673fce90a53520475cdb19d5358dd34 (patch)
treebb84bfee9a2c83daa2ccb182de0169a3f4dc5e95 /synapse/storage/_base.py
parentRemove unused imports (diff)
downloadsynapse-c8dd3314d673fce90a53520475cdb19d5358dd34.tar.xz
Fix bug where we ignored event_edge_hashes table
Diffstat (limited to 'synapse/storage/_base.py')
-rw-r--r--synapse/storage/_base.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/synapse/storage/_base.py b/synapse/storage/_base.py

index 1967290ad2..31d5163c19 100644 --- a/synapse/storage/_base.py +++ b/synapse/storage/_base.py
@@ -83,7 +83,6 @@ class SQLBaseStore(object): def __init__(self, hs): self.hs = hs self._db_pool = hs.get_db_pool() - self.event_factory = hs.get_event_factory() self._clock = hs.get_clock() @defer.inlineCallbacks