go fmt
This commit is contained in:
@@ -37,8 +37,7 @@ func (broker *MessageBroker) Subscribe(stream messaging_pb.SeaweedMessaging_Subs
|
|||||||
// IsTransient: true,
|
// IsTransient: true,
|
||||||
}
|
}
|
||||||
|
|
||||||
if err = stream.Send(&messaging_pb.BrokerMessage{
|
if err = stream.Send(&messaging_pb.BrokerMessage{}); err != nil {
|
||||||
}); err != nil {
|
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
package broker
|
package broker
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/cespare/xxhash"
|
|
||||||
"github.com/buraksezer/consistent"
|
"github.com/buraksezer/consistent"
|
||||||
|
"github.com/cespare/xxhash"
|
||||||
)
|
)
|
||||||
|
|
||||||
type Member string
|
type Member string
|
||||||
|
|||||||
@@ -16,9 +16,11 @@ type TopicPartition struct {
|
|||||||
Topic string
|
Topic string
|
||||||
Partition int32
|
Partition int32
|
||||||
}
|
}
|
||||||
|
|
||||||
const (
|
const (
|
||||||
TopicPartitionFmt = "%s/%s_%02d"
|
TopicPartitionFmt = "%s/%s_%02d"
|
||||||
)
|
)
|
||||||
|
|
||||||
func (tp *TopicPartition) String() string {
|
func (tp *TopicPartition) String() string {
|
||||||
return fmt.Sprintf(TopicPartitionFmt, tp.Namespace, tp.Topic, tp.Partition)
|
return fmt.Sprintf(TopicPartitionFmt, tp.Namespace, tp.Topic, tp.Partition)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -28,7 +28,6 @@ func NewMessagingClient(bootstrapBrokers ...string) *MessagingClient {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
func (mc *MessagingClient) findBroker(tp broker.TopicPartition) (*grpc.ClientConn, error) {
|
func (mc *MessagingClient) findBroker(tp broker.TopicPartition) (*grpc.ClientConn, error) {
|
||||||
|
|
||||||
for _, broker := range mc.bootstrapBrokers {
|
for _, broker := range mc.bootstrapBrokers {
|
||||||
|
|||||||
@@ -16,6 +16,7 @@ type Publisher struct {
|
|||||||
messageCount uint64
|
messageCount uint64
|
||||||
publisherId string
|
publisherId string
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
func (mc *MessagingClient) NewPublisher(publisherId, namespace, topic string) (*Publisher, error) {
|
func (mc *MessagingClient) NewPublisher(publisherId, namespace, topic string) (*Publisher, error) {
|
||||||
// read topic configuration
|
// read topic configuration
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ import (
|
|||||||
"io"
|
"io"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"google.golang.org/grpc"
|
|
||||||
"github.com/chrislusf/seaweedfs/weed/pb/messaging_pb"
|
"github.com/chrislusf/seaweedfs/weed/pb/messaging_pb"
|
||||||
|
"google.golang.org/grpc"
|
||||||
)
|
)
|
||||||
|
|
||||||
type Subscriber struct {
|
type Subscriber struct {
|
||||||
|
|||||||
Reference in New Issue
Block a user