aboutsummaryrefslogtreecommitdiff
path: root/federationapi/routing/backfill.go
diff options
context:
space:
mode:
authorKegsay <kegan@matrix.org>2020-06-11 19:50:40 +0100
committerGitHub <noreply@github.com>2020-06-11 19:50:40 +0100
commitec7718e7f842fa0fc5198489c904de21003db4c2 (patch)
treee267fe8dae227b274381213ef3e8a3f34fbf0f26 /federationapi/routing/backfill.go
parent25cd2dd1c925fa0c1eeb27a3cd71e668344102ad (diff)
Roomserver API changes (#1118)
* s/QueryBackfill/PerformBackfill/g * OutputEvent now includes AddStateEvents which contain the full event of extra state events * Only include adds not the current event * Get adding state right
Diffstat (limited to 'federationapi/routing/backfill.go')
-rw-r--r--federationapi/routing/backfill.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/federationapi/routing/backfill.go b/federationapi/routing/backfill.go
index 10bc6263..f906c73c 100644
--- a/federationapi/routing/backfill.go
+++ b/federationapi/routing/backfill.go
@@ -37,7 +37,7 @@ func Backfill(
roomID string,
cfg *config.Dendrite,
) util.JSONResponse {
- var res api.QueryBackfillResponse
+ var res api.PerformBackfillResponse
var eIDs []string
var limit string
var exists bool
@@ -68,7 +68,7 @@ func Backfill(
}
// Populate the request.
- req := api.QueryBackfillRequest{
+ req := api.PerformBackfillRequest{
RoomID: roomID,
// we don't know who the successors are for these events, which won't
// be a problem because we don't use that information when servicing /backfill requests,
@@ -87,8 +87,8 @@ func Backfill(
}
// Query the roomserver.
- if err = rsAPI.QueryBackfill(httpReq.Context(), &req, &res); err != nil {
- util.GetLogger(httpReq.Context()).WithError(err).Error("query.QueryBackfill failed")
+ if err = rsAPI.PerformBackfill(httpReq.Context(), &req, &res); err != nil {
+ util.GetLogger(httpReq.Context()).WithError(err).Error("query.PerformBackfill failed")
return jsonerror.InternalServerError()
}