mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-01-26 01:15:56 -05:00
parent
e8130f219b
commit
2318603772
1
changelog.d/13679.misc
Normal file
1
changelog.d/13679.misc
Normal file
@ -0,0 +1 @@
|
|||||||
|
Add some logging to help track down #13444.
|
@ -441,6 +441,19 @@ class FederationSender(AbstractFederationSender):
|
|||||||
destinations = await self._external_cache.get(
|
destinations = await self._external_cache.get(
|
||||||
"get_joined_hosts", str(sg)
|
"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:
|
if destinations is None:
|
||||||
try:
|
try:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user