Fix incorrect log about not persisting duplicate state event. (#4776)
We were logging this when it was not true.pull/4781/head
parent
1beebe916f
commit
3064952939
|
@ -0,0 +1 @@
|
||||||
|
Fix incorrect log about not persisting duplicate state event.
|
|
@ -436,10 +436,11 @@ class EventCreationHandler(object):
|
||||||
|
|
||||||
if event.is_state():
|
if event.is_state():
|
||||||
prev_state = yield self.deduplicate_state_event(event, context)
|
prev_state = yield self.deduplicate_state_event(event, context)
|
||||||
logger.info(
|
|
||||||
"Not bothering to persist duplicate state event %s", event.event_id,
|
|
||||||
)
|
|
||||||
if prev_state is not None:
|
if prev_state is not None:
|
||||||
|
logger.info(
|
||||||
|
"Not bothering to persist state event %s duplicated by %s",
|
||||||
|
event.event_id, prev_state.event_id,
|
||||||
|
)
|
||||||
defer.returnValue(prev_state)
|
defer.returnValue(prev_state)
|
||||||
|
|
||||||
yield self.handle_new_client_event(
|
yield self.handle_new_client_event(
|
||||||
|
|
Loading…
Reference in New Issue