mirror of
https://github.com/matrix-org/dendrite.git
synced 2025-12-22 06:13: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{}
|
inputRes := &api.InputRoomEventsResponse{}
|
||||||
go r.InputRoomEvents(ctx, inputReq, inputRes) // nolint:errcheck
|
go r.InputRoomEvents(context.Background(), inputReq, inputRes) // nolint:errcheck
|
||||||
|
|
||||||
succeeded = true
|
succeeded = true
|
||||||
return nil
|
return nil
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue