diff options
author | Eric Eastwood <erice@element.io> | 2022-09-27 01:48:43 -0500 |
---|---|---|
committer | Eric Eastwood <erice@element.io> | 2022-09-27 01:48:43 -0500 |
commit | 31e2c10355768af3a6f6478f94fa84c79f42255a (patch) | |
tree | 12c0f2cf19724116b0f4cf75ad8634b1cd213130 /synapse | |
parent | Merge branch 'madlittlemods/13356-messages-investigation-scratch-v1' into mad... (diff) | |
download | synapse-31e2c10355768af3a6f6478f94fa84c79f42255a.tar.xz |
Non-working test
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/handlers/message.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/synapse/handlers/message.py b/synapse/handlers/message.py index 10b5dad030..f2d0c425e6 100644 --- a/synapse/handlers/message.py +++ b/synapse/handlers/message.py @@ -1081,6 +1081,11 @@ class EventCreationHandler: # Do a quick sanity check here, rather than waiting until we've created the # event and then try to auth it (which fails with a somewhat confusing "No # create event in auth events") + logger.info( + "create_new_client_event allow_no_prev_events=%s auth_event_ids=%s", + allow_no_prev_events, + auth_event_ids, + ) if allow_no_prev_events: # We allow events with no `prev_events` but it better have some `auth_events` assert ( |