mirror of
https://github.com/element-hq/synapse.git
synced 2024-11-26 03:25:53 +03:00
Quieter logging for stateres failure at missing prev events (#14346)
This commit is contained in:
parent
e9a4343cb2
commit
d10a85ec9e
2 changed files with 3 additions and 3 deletions
1
changelog.d/14346.misc
Normal file
1
changelog.d/14346.misc
Normal file
|
@ -0,0 +1 @@
|
||||||
|
Concisely log a failure to resolve state due to missing `prev_events`.
|
|
@ -1065,10 +1065,9 @@ class FederationEventHandler:
|
||||||
state_res_store=StateResolutionStore(self._store),
|
state_res_store=StateResolutionStore(self._store),
|
||||||
)
|
)
|
||||||
|
|
||||||
except Exception:
|
except Exception as e:
|
||||||
logger.warning(
|
logger.warning(
|
||||||
"Error attempting to resolve state at missing prev_events",
|
"Error attempting to resolve state at missing prev_events: %s", e
|
||||||
exc_info=True,
|
|
||||||
)
|
)
|
||||||
raise FederationError(
|
raise FederationError(
|
||||||
"ERROR",
|
"ERROR",
|
||||||
|
|
Loading…
Reference in a new issue