mirror of
https://github.com/matrix-org/dendrite.git
synced 2025-12-21 22:03:10 -06:00
Don't limit roomserver input events using request context
This commit is contained in:
parent
5c6857f849
commit
a106424095
|
|
@ -158,7 +158,7 @@ func (r *RoomserverInternalAPI) PerformInvite(
|
|||
},
|
||||
}
|
||||
inputRes := &api.InputRoomEventsResponse{}
|
||||
go r.InputRoomEvents(ctx, inputReq, inputRes) // nolint:errcheck
|
||||
go r.InputRoomEvents(context.Background(), inputReq, inputRes) // nolint:errcheck
|
||||
|
||||
succeeded = true
|
||||
return nil
|
||||
|
|
|
|||
Loading…
Reference in a new issue