diff options
author | Sean Quah <8349537+squahtx@users.noreply.github.com> | 2022-07-12 18:57:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-12 18:57:38 +0100 |
commit | 3f178332d68cb723150d0e392ed92780e4e5a610 (patch) | |
tree | ca175d2dc4e5f0c25b469adbc28cd0b2156b0f0f /synapse | |
parent | Add info about configuration in the url preview docs (#13233) (diff) | |
download | synapse-3f178332d68cb723150d0e392ed92780e4e5a610.tar.xz |
Log the stack when waiting for an entire room to be un-partial stated (#13257)
The stack is already logged when waiting for an event to be un-partial stated. Log the stack for rooms as well, to aid in debugging.
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/storage/util/partial_state_events_tracker.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/storage/util/partial_state_events_tracker.py b/synapse/storage/util/partial_state_events_tracker.py index 211437cfaa..466e5137f2 100644 --- a/synapse/storage/util/partial_state_events_tracker.py +++ b/synapse/storage/util/partial_state_events_tracker.py @@ -166,6 +166,7 @@ class PartialCurrentStateTracker: logger.info( "Awaiting un-partial-stating of room %s", room_id, + stack_info=True, ) await make_deferred_yieldable(d) |