aboutsummaryrefslogtreecommitdiff
path: root/cmd/dendrite-monolith-server
diff options
context:
space:
mode:
authorNeil Alexander <neilalexander@users.noreply.github.com>2020-09-02 15:26:30 +0100
committerGitHub <noreply@github.com>2020-09-02 15:26:30 +0100
commit096191ca240776031370e99b93732557972ba92a (patch)
tree79f4247556a3dbd01fc8dca2fac68f752800a6d7 /cmd/dendrite-monolith-server
parente473320e733484b1cc6da0588fd2ccf4affb3d24 (diff)
Use federation sender for backfill/getting missing events (#1379)
* Use federation sender for backfill and getting missing events * Fix internal URL paths * Update go.mod/go.sum for matrix-org/gomatrixserverlib#218 * Add missing server implementations in HTTP interface
Diffstat (limited to 'cmd/dendrite-monolith-server')
-rw-r--r--cmd/dendrite-monolith-server/main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/dendrite-monolith-server/main.go b/cmd/dendrite-monolith-server/main.go
index 81511746..717b21a9 100644
--- a/cmd/dendrite-monolith-server/main.go
+++ b/cmd/dendrite-monolith-server/main.go
@@ -81,7 +81,7 @@ func main() {
keyRing := serverKeyAPI.KeyRing()
rsImpl := roomserver.NewInternalAPI(
- base, keyRing, federation,
+ base, keyRing,
)
// call functions directly on the impl unless running in HTTP mode
rsAPI := rsImpl