Invalidate _account_data_stream_cache correctly

This commit is contained in:
Erik Johnston 2016-01-29 16:41:51 +00:00
parent e70165039c
commit cc9c97e0dc
1 changed files with 4 additions and 0 deletions

View File

@ -157,6 +157,10 @@ class AccountDataStore(SQLBaseStore):
"content": content_json, "content": content_json,
} }
) )
txn.call_after(
self._account_data_stream_cache.entity_has_changed,
user_id, next_id,
)
self._update_max_stream_id(txn, next_id) self._update_max_stream_id(txn, next_id)
with (yield self._account_data_id_gen.get_next(self)) as next_id: with (yield self._account_data_id_gen.get_next(self)) as next_id: