fix(backend): added missed argument in kafka consumer

This commit is contained in:
Alexander Zavorotynskiy 2022-10-25 16:11:56 +02:00
parent 51b6414cb6
commit 408bd80ec3

View file

@ -177,6 +177,7 @@ func (consumer *Consumer) ConsumeNext() error {
decodeKey(e.Key),
*(e.TopicPartition.Topic),
uint64(e.TopicPartition.Offset),
uint64(e.TopicPartition.Partition),
ts))
consumer.lastReceivedPrtTs[e.TopicPartition.Partition] = ts
case kafka.Error: