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
Browse files Browse the repository at this point in the history
  • Loading branch information
erikjohnston committed Aug 31, 2022
1 parent 92c5817 commit f6c4832
Showing 1 changed file with 13 additions and 0 deletions.
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 f6c4832

Please sign in to comment.