Skip to content

Commit

Permalink
fix: fix 1067
Browse files Browse the repository at this point in the history
  • Loading branch information
Gleiphir2769 committed Jul 21, 2023
1 parent 9867c29 commit 152520d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pulsar/producer_partition.go
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ func newPartitionProducer(client *client, topic string, options *ProducerOptions
log: logger,
options: options,
producerID: client.rpcClient.NewProducerID(),
dataChan: make(chan *sendRequest, maxPendingMessages),
dataChan: make(chan *sendRequest, 10),
cmdChan: make(chan interface{}, 10),
connectClosedCh: make(chan connectionClosed, 10),
batchFlushTicker: time.NewTicker(batchingMaxPublishDelay),
Expand Down

0 comments on commit 152520d

Please sign in to comment.