This commit is contained in:
Chris Lu
2020-04-20 17:48:06 -07:00
parent 5eb83dfbd3
commit cb3985be70
8 changed files with 15 additions and 15 deletions

View File

@@ -18,7 +18,7 @@ type TopicPartition struct {
}
type TopicLock struct {
sync.Mutex
cond *sync.Cond
cond *sync.Cond
subscriberCount int
publisherCount int
logBuffer *log_buffer.LogBuffer

View File

@@ -49,9 +49,9 @@ func (mc *MessagingClient) NewPublisher(namespace, topic string) (*Publisher, er
doneChan <- err
return
}
if in.Redirect != nil{
if in.Redirect != nil {
}
if in.Config != nil{
if in.Config != nil {
}
}
}()