Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Add some logging to help track down #13444 (#13679)
Browse files Browse the repository at this point in the history
  • Loading branch information
erikjohnston authored Sep 1, 2022
1 parent e8130f2 commit 2318603
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
1 change: 1 addition & 0 deletions changelog.d/13679.misc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Add some logging to help track down #13444.
13 changes: 13 additions & 0 deletions synapse/federation/sender/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -441,6 +441,19 @@ async def handle_event(event: EventBase) -> None:
destinations = await self._external_cache.get(
"get_joined_hosts", str(sg)
)
if destinations is None:
# Add logging to help track down #13444
logger.info(
"Unexpectedly did not have cached destinations for %s / %s",
sg,
event.event_id,
)
else:
# Add logging to help track down #13444
logger.info(
"Unexpectedly did not have cached prev group for %s",
event.event_id,
)

if destinations is None:
try:
Expand Down

0 comments on commit 2318603

Please sign in to comment.