mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-03 22:44:49 -04:00
Reduce the amount of state we pull from the DB (#12811)
This commit is contained in:
parent
6b46c3eb3d
commit
e3163e2e11
23 changed files with 162 additions and 147 deletions
|
@ -102,9 +102,10 @@ class PurgeTests(HomeserverTestCase):
|
|||
first = self.helper.send(self.room_id, body="test1")
|
||||
|
||||
# Get the current room state.
|
||||
state_handler = self.hs.get_state_handler()
|
||||
create_event = self.get_success(
|
||||
state_handler.get_current_state(self.room_id, "m.room.create", "")
|
||||
self._storage_controllers.state.get_current_state_event(
|
||||
self.room_id, "m.room.create", ""
|
||||
)
|
||||
)
|
||||
self.assertIsNotNone(create_event)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue