Skip to content

Commit e4df39e

Browse files
committed
fix linters
1 parent 8429cb3 commit e4df39e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

internal/topic/topicwriterinternal/writer_reconnector.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ import (
3333
var (
3434
errConnTimeout = xerrors.Wrap(errors.New("ydb: connection timeout"))
3535
errStopWriterReconnector = xerrors.Wrap(errors.New("ydb: stop writer reconnector"))
36-
errNonZeroSeqNo = xerrors.Wrap(errors.New("ydb: non zero seqno for auto set seqno mode"))
36+
errNonZeroSeqNo = xerrors.Wrap(errors.New("ydb: non zero seqno for auto set seqno mode")) //nolint:lll
3737
errNonZeroCreatedAt = xerrors.Wrap(errors.New("ydb: non zero Message.CreatedAt and set auto fill created at option")) //nolint:lll
3838
errNoAllowedCodecs = xerrors.Wrap(errors.New("ydb: no allowed codecs for write to topic"))
39-
errLargeMessage = xerrors.Wrap(errors.New("ydb: message uncompressed size more, then limit"))
40-
PublicErrMessagesPutToInternalQueueBeforeError = xerrors.Wrap(errors.New("ydb: the messages was put to internal buffer before the error happened. It mean about the messages can be delivered to the server"))
39+
errLargeMessage = xerrors.Wrap(errors.New("ydb: message uncompressed size more, then limit")) //nolint:lll
40+
PublicErrMessagesPutToInternalQueueBeforeError = xerrors.Wrap(errors.New("ydb: the messages was put to internal buffer before the error happened. It mean about the messages can be delivered to the server")) //nolint:lll
4141
errDiffetentTransactions = xerrors.Wrap(errors.New("ydb: internal writer has messages from different trasactions. It is internal logic error, write issue please: https://github.com/ydb-platform/ydb-go-sdk/issues/new?assignees=&labels=bug&projects=&template=01_BUG_REPORT.md&title=bug%3A+")) //nolint:lll
4242

4343
// errProducerIDNotEqualMessageGroupID is temporary

0 commit comments

Comments
 (0)