summary refs log tree commit diff
path: root/synapse/handlers/message.py
diff options
context:
space:
mode:
authorRichard van der Hoff <richard@matrix.org>2018-11-06 10:49:20 +0000
committerRichard van der Hoff <richard@matrix.org>2018-11-06 10:49:20 +0000
commit34406cf22cf35f432e8c13d5e203c05ebeceabfd (patch)
treeb135a765bacbf85e14e4ad845e2bc59baf01fc8f /synapse/handlers/message.py
parentMerge remote-tracking branch 'origin/develop' into matrix-org-hotfixes (diff)
parentAdd config variables for enabling terms auth and the policy name (#4142) (diff)
downloadsynapse-34406cf22cf35f432e8c13d5e203c05ebeceabfd.tar.xz
Merge remote-tracking branch 'origin/develop' into matrix-org-hotfixes
Diffstat (limited to 'synapse/handlers/message.py')
-rw-r--r--synapse/handlers/message.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/synapse/handlers/message.py b/synapse/handlers/message.py

index b1dcc1cf3d..feed4558c7 100644 --- a/synapse/handlers/message.py +++ b/synapse/handlers/message.py
@@ -427,6 +427,9 @@ 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: defer.returnValue(prev_state)