diff options
author | Kegsay <kegan@matrix.org> | 2020-07-23 16:41:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-23 16:41:36 +0100 |
commit | 98f2f09bb46f8bd126214f7874065d6b311bdeba (patch) | |
tree | 89108a41fe96e5d0a6dbd4f1d5e91c0b5263fc2e /build | |
parent | 7b862384a779f067f07ffeb2151856f89d372732 (diff) |
keyserver: produce key change events (#1218)
* Produce kafka events when keys are added
* Consume key changes in syncapi with TODO markers for handling them and catching up
* unbreak tests
* Linting
Diffstat (limited to 'build')
-rw-r--r-- | build/gobind/monolith.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/gobind/monolith.go b/build/gobind/monolith.go index 7da53084..8e976632 100644 --- a/build/gobind/monolith.go +++ b/build/gobind/monolith.go @@ -155,7 +155,7 @@ func (m *DendriteMonolith) Start() { RoomserverAPI: rsAPI, UserAPI: userAPI, StateAPI: stateAPI, - KeyAPI: keyserver.NewInternalAPI(base.Cfg, federation, userAPI), + KeyAPI: keyserver.NewInternalAPI(base.Cfg, federation, userAPI, base.KafkaProducer), ExtPublicRoomsProvider: yggrooms.NewYggdrasilRoomProvider( ygg, fsAPI, federation, ), |