Fix incorrect log about not persisting duplicate state event. (#4776)

We were logging this when it was not true.
This commit is contained in:
Richard van der Hoff
2019-03-01 16:47:12 +00:00
committed by GitHub
parent 1beebe916f
commit 3064952939
2 changed files with 5 additions and 3 deletions
+1
View File
@@ -0,0 +1 @@
Fix incorrect log about not persisting duplicate state event.
+4 -3
View File
@@ -436,10 +436,11 @@ class EventCreationHandler(object):
if event.is_state():
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:
logger.info(
"Not bothering to persist state event %s duplicated by %s",
event.event_id, prev_state.event_id,
)
defer.returnValue(prev_state)
yield self.handle_new_client_event(