mirror of
https://github.com/element-hq/synapse.git
synced 2026-05-26 07:34:11 +00:00
Quieter logging for stateres failure at missing prev events (#14346)
This commit is contained in:
@@ -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),
|
||||
)
|
||||
|
||||
except Exception:
|
||||
except Exception as e:
|
||||
logger.warning(
|
||||
"Error attempting to resolve state at missing prev_events",
|
||||
exc_info=True,
|
||||
"Error attempting to resolve state at missing prev_events: %s", e
|
||||
)
|
||||
raise FederationError(
|
||||
"ERROR",
|
||||
|
||||
Reference in New Issue
Block a user