mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
Log some bits about event creation (#4121)
I found these helpful in debugging my room upgrade tests.
This commit is contained in:
parent
60f128a401
commit
9b827c40ca
1
changelog.d/4121.misc
Normal file
1
changelog.d/4121.misc
Normal file
@ -0,0 +1 @@
|
|||||||
|
Log some bits about room creation
|
@ -427,6 +427,9 @@ 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:
|
||||||
defer.returnValue(prev_state)
|
defer.returnValue(prev_state)
|
||||||
|
|
||||||
|
@ -104,6 +104,8 @@ class RoomCreationHandler(BaseHandler):
|
|||||||
creator_id=user_id, is_public=r["is_public"],
|
creator_id=user_id, is_public=r["is_public"],
|
||||||
)
|
)
|
||||||
|
|
||||||
|
logger.info("Creating new room %s to replace %s", new_room_id, old_room_id)
|
||||||
|
|
||||||
# we create and auth the tombstone event before properly creating the new
|
# we create and auth the tombstone event before properly creating the new
|
||||||
# room, to check our user has perms in the old room.
|
# room, to check our user has perms in the old room.
|
||||||
tombstone_event, tombstone_context = (
|
tombstone_event, tombstone_context = (
|
||||||
@ -522,6 +524,7 @@ class RoomCreationHandler(BaseHandler):
|
|||||||
@defer.inlineCallbacks
|
@defer.inlineCallbacks
|
||||||
def send(etype, content, **kwargs):
|
def send(etype, content, **kwargs):
|
||||||
event = create(etype, content, **kwargs)
|
event = create(etype, content, **kwargs)
|
||||||
|
logger.info("Sending %s in new room", etype)
|
||||||
yield self.event_creation_handler.create_and_send_nonmember_event(
|
yield self.event_creation_handler.create_and_send_nonmember_event(
|
||||||
creator,
|
creator,
|
||||||
event,
|
event,
|
||||||
@ -544,6 +547,7 @@ class RoomCreationHandler(BaseHandler):
|
|||||||
content=creation_content,
|
content=creation_content,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
logger.info("Sending %s in new room", EventTypes.Member)
|
||||||
yield self.room_member_handler.update_membership(
|
yield self.room_member_handler.update_membership(
|
||||||
creator,
|
creator,
|
||||||
creator.user,
|
creator.user,
|
||||||
|
Loading…
Reference in New Issue
Block a user