Actually don't store any PDUs

This commit is contained in:
Erik Johnston 2014-10-31 10:47:34 +00:00
parent d84f5b30b8
commit 21fe249d62
3 changed files with 42 additions and 14 deletions

View file

@ -78,6 +78,13 @@ class EventFederationStore(SQLBaseStore):
return results
def get_min_depth(self, room_id):
return self.runInteraction(
"get_min_depth",
self._get_min_depth_interaction,
room_id,
)
def _get_min_depth_interaction(self, txn, room_id):
min_depth = self._simple_select_one_onecol_txn(
txn,