Don't limit roomserver input events using request context

This commit is contained in:
Neil Alexander 2020-08-17 14:12:11 +01:00
parent 5c6857f849
commit a106424095
No known key found for this signature in database
GPG key ID: A02A2019A2BB0944

View file

@ -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