mirror of
https://github.com/matrix-org/dendrite.git
synced 2025-02-07 19:44:29 -06:00
Merge branch 'master' into neilalexander/devicelist
This commit is contained in:
parent
f4134ea7c6
commit
1bc1347ce4
|
@ -116,7 +116,7 @@ func (r *Inputer) WriteOutputEvents(roomID string, updates []api.OutputEvent) er
|
||||||
|
|
||||||
// InputRoomEvents implements api.RoomserverInternalAPI
|
// InputRoomEvents implements api.RoomserverInternalAPI
|
||||||
func (r *Inputer) InputRoomEvents(
|
func (r *Inputer) InputRoomEvents(
|
||||||
ctx context.Context,
|
_ context.Context,
|
||||||
request *api.InputRoomEventsRequest,
|
request *api.InputRoomEventsRequest,
|
||||||
response *api.InputRoomEventsResponse,
|
response *api.InputRoomEventsResponse,
|
||||||
) {
|
) {
|
||||||
|
@ -148,7 +148,7 @@ func (r *Inputer) InputRoomEvents(
|
||||||
// the wait group, so that the worker can notify us when this specific
|
// the wait group, so that the worker can notify us when this specific
|
||||||
// task has been finished.
|
// task has been finished.
|
||||||
tasks[i] = &inputTask{
|
tasks[i] = &inputTask{
|
||||||
ctx: ctx,
|
ctx: context.Background(),
|
||||||
event: &request.InputRoomEvents[i],
|
event: &request.InputRoomEvents[i],
|
||||||
wg: wg,
|
wg: wg,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue