Skip to content

Commit 4b5925a

Browse files
fix: incorrect error check in autoCommitLoop (#15149)
1 parent 2eea546 commit 4b5925a

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

‎pkg/kafka/partition/committer.go

+6-4
Original file line numberDiff line numberDiff line change
@@ -95,11 +95,13 @@ func (c *partitionCommitter) autoCommitLoop(ctx context.Context) {
9595
continue
9696
}
9797

98-
if err := c.Commit(ctx, currOffset); err == nil {
99-
level.Error(c.logger).Log("msg", "failed to commit", "offset", currOffset)
100-
c.lastCommittedOffset.Set(float64(currOffset))
101-
previousOffset = currOffset
98+
if err := c.Commit(ctx, currOffset); err != nil {
99+
level.Error(c.logger).Log("msg", "failed to commit", "offset", currOffset, "err", err)
100+
continue
102101
}
102+
103+
c.lastCommittedOffset.Set(float64(currOffset))
104+
previousOffset = currOffset
103105
}
104106
}
105107
}

0 commit comments

Comments
 (0)