Skip to content

Commit 6d208e8

Browse files
committed
chore: fix unit tests
1 parent ee8828d commit 6d208e8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

kq/queue.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -160,9 +160,9 @@ func newKafkaQueue(c KqConf, handler ConsumeHandler, options queueOptions) queue
160160
errorHandler: options.errorHandler,
161161
}
162162
q.commitRunner = threading.NewStableRunner(func(msg kafka.Message) kafka.Message {
163-
if err := q.consumeOne(string(msg.Key), string(msg.Value)); err != nil {
163+
if err := q.consumeOne(context.Background(), string(msg.Key), string(msg.Value)); err != nil {
164164
if q.errorHandler != nil {
165-
q.errorHandler(msg, err)
165+
q.errorHandler(context.Background(), msg, err)
166166
}
167167
}
168168

0 commit comments

Comments
 (0)