diff options
author | Erik Johnston <erik@matrix.org> | 2019-09-02 11:33:03 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2019-09-02 11:33:03 +0100 |
commit | 02f759e0a213ab8e3d03895bcae3a173ef913bce (patch) | |
tree | 20d8067f2e1b5d19b4232fdb2d97322e27c92ad1 /synapse/storage/stats.py | |
parent | Merge branch 'rei/rss_target' of github.com:matrix-org/synapse into rei/rss_inc8 (diff) | |
download | synapse-02f759e0a213ab8e3d03895bcae3a173ef913bce.tar.xz |
Renamve get_room_state
Diffstat (limited to 'synapse/storage/stats.py')
-rw-r--r-- | synapse/storage/stats.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/storage/stats.py b/synapse/storage/stats.py index c3a8d6f5e7..f20d8ba8a4 100644 --- a/synapse/storage/stats.py +++ b/synapse/storage/stats.py @@ -709,9 +709,9 @@ class StatsStore(StateDeltasStore): return slice_list - def get_room_state(self, room_id): + def get_room_stats_state(self, room_id): """ - Returns the current room_state for a room. + Returns the current room_stats_state for a room. Args: room_id (str): The ID of the room to return state for. |