aboutsummaryrefslogtreecommitdiff
path: root/weed/messaging/msgclient/publisher.go
diff options
context:
space:
mode:
Diffstat (limited to 'weed/messaging/msgclient/publisher.go')
-rw-r--r--weed/messaging/msgclient/publisher.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/messaging/msgclient/publisher.go b/weed/messaging/msgclient/publisher.go
index b0fc5afbf..1aa483ff8 100644
--- a/weed/messaging/msgclient/publisher.go
+++ b/weed/messaging/msgclient/publisher.go
@@ -26,7 +26,7 @@ func (mc *MessagingClient) NewPublisher(publisherId, namespace, topic string) (*
for i := 0; i < int(topicConfiguration.PartitionCount); i++ {
tp := broker.TopicPartition{
Namespace: namespace,
- Topic: topic,
+ Topic: topic,
Partition: int32(i),
}
grpcClientConn, err := mc.findBroker(tp)