diff options
author | Neil Alexander <neilalexander@users.noreply.github.com> | 2020-04-22 15:26:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-22 15:26:56 +0100 |
commit | c30b12b5a1deea21e54d4718ca11a3b6366c443d (patch) | |
tree | ceee50f37686f48497785c8e4a4696713434ca20 /syncapi/consumers | |
parent | 423c656146579daac1e6739ef05b4b79f4c5b611 (diff) |
Fix sarama import URLs (#856)
* Fix sarama import URLs
* Update gomatrixserverlib
* Update naffka
* Update naffka
* Update in kafka-producer
Diffstat (limited to 'syncapi/consumers')
-rw-r--r-- | syncapi/consumers/clientapi.go | 2 | ||||
-rw-r--r-- | syncapi/consumers/eduserver.go | 2 | ||||
-rw-r--r-- | syncapi/consumers/roomserver.go | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/syncapi/consumers/clientapi.go b/syncapi/consumers/clientapi.go index 17f2c522..f5b8c43e 100644 --- a/syncapi/consumers/clientapi.go +++ b/syncapi/consumers/clientapi.go @@ -18,13 +18,13 @@ import ( "context" "encoding/json" + "github.com/Shopify/sarama" "github.com/matrix-org/dendrite/common" "github.com/matrix-org/dendrite/common/config" "github.com/matrix-org/dendrite/syncapi/storage" "github.com/matrix-org/dendrite/syncapi/sync" "github.com/matrix-org/dendrite/syncapi/types" log "github.com/sirupsen/logrus" - sarama "gopkg.in/Shopify/sarama.v1" ) // OutputClientDataConsumer consumes events that originated in the client API server. diff --git a/syncapi/consumers/eduserver.go b/syncapi/consumers/eduserver.go index 5491c1e9..249452af 100644 --- a/syncapi/consumers/eduserver.go +++ b/syncapi/consumers/eduserver.go @@ -17,6 +17,7 @@ package consumers import ( "encoding/json" + "github.com/Shopify/sarama" "github.com/matrix-org/dendrite/common" "github.com/matrix-org/dendrite/common/config" "github.com/matrix-org/dendrite/eduserver/api" @@ -24,7 +25,6 @@ import ( "github.com/matrix-org/dendrite/syncapi/sync" "github.com/matrix-org/dendrite/syncapi/types" log "github.com/sirupsen/logrus" - sarama "gopkg.in/Shopify/sarama.v1" ) // OutputTypingEventConsumer consumes events that originated in the EDU server. diff --git a/syncapi/consumers/roomserver.go b/syncapi/consumers/roomserver.go index f1e68c26..1d512972 100644 --- a/syncapi/consumers/roomserver.go +++ b/syncapi/consumers/roomserver.go @@ -19,6 +19,7 @@ import ( "encoding/json" "fmt" + "github.com/Shopify/sarama" "github.com/matrix-org/dendrite/common" "github.com/matrix-org/dendrite/common/config" "github.com/matrix-org/dendrite/roomserver/api" @@ -27,7 +28,6 @@ import ( "github.com/matrix-org/dendrite/syncapi/types" "github.com/matrix-org/gomatrixserverlib" log "github.com/sirupsen/logrus" - sarama "gopkg.in/Shopify/sarama.v1" ) // OutputRoomEventConsumer consumes events that originated in the room server. |