Skip to content

Commit de9f72e

Browse files
committed
Chore: fix typo
1 parent bdc2415 commit de9f72e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/queue/kafka/operator.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ type ConsumeOperator[Msg any] struct {
1212
callback queue.Callback[Msg]
1313

1414
initialized bool
15-
running bool
1615
cancel *context.CancelFunc
1716

1817
consumer *Consumer
@@ -106,6 +105,7 @@ type BeforeBytesProduceOperator struct {
106105

107106
func NewBytesProduceOperatorCtor(brokers []string, configProvider func() *sarama.Config) *BeforeBytesProduceOperator {
108107
return &BeforeBytesProduceOperator{
108+
pool: NewProducerPool(brokers, configProvider),
109109
brokers: brokers,
110110
configProvider: configProvider,
111111
}

0 commit comments

Comments
 (0)