aboutsummaryrefslogtreecommitdiff
path: root/clientapi/producers
diff options
context:
space:
mode:
authorNeil Alexander <neilalexander@users.noreply.github.com>2020-04-22 15:26:56 +0100
committerGitHub <noreply@github.com>2020-04-22 15:26:56 +0100
commitc30b12b5a1deea21e54d4718ca11a3b6366c443d (patch)
treeceee50f37686f48497785c8e4a4696713434ca20 /clientapi/producers
parent423c656146579daac1e6739ef05b4b79f4c5b611 (diff)
Fix sarama import URLs (#856)
* Fix sarama import URLs * Update gomatrixserverlib * Update naffka * Update naffka * Update in kafka-producer
Diffstat (limited to 'clientapi/producers')
-rw-r--r--clientapi/producers/syncapi.go2
-rw-r--r--clientapi/producers/userupdate.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/clientapi/producers/syncapi.go b/clientapi/producers/syncapi.go
index 6bfcd51a..0a446e2f 100644
--- a/clientapi/producers/syncapi.go
+++ b/clientapi/producers/syncapi.go
@@ -19,7 +19,7 @@ import (
"github.com/matrix-org/dendrite/common"
- sarama "gopkg.in/Shopify/sarama.v1"
+ "github.com/Shopify/sarama"
)
// SyncAPIProducer produces events for the sync API server to consume
diff --git a/clientapi/producers/userupdate.go b/clientapi/producers/userupdate.go
index 2a5dfc70..426b6d50 100644
--- a/clientapi/producers/userupdate.go
+++ b/clientapi/producers/userupdate.go
@@ -17,7 +17,7 @@ package producers
import (
"encoding/json"
- sarama "gopkg.in/Shopify/sarama.v1"
+ "github.com/Shopify/sarama"
)
// UserUpdateProducer produces events related to user updates.