You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: internal/topic/topicwriterinternal/writer_reconnector.go
+6-3Lines changed: 6 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -36,7 +36,8 @@ var (
36
36
errNonZeroSeqNo=xerrors.Wrap(errors.New("ydb: non zero seqno for auto set seqno mode")) //nolint:lll
37
37
errNonZeroCreatedAt=xerrors.Wrap(errors.New("ydb: non zero Message.CreatedAt and set auto fill created at option")) //nolint:lll
38
38
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")) //nolint:lll
39
+
errLargeMessage=xerrors.Wrap(errors.New("ydb: message uncompressed size more, then limit")) //nolint:lll
40
+
PublicErrQueueIsFull=xerrors.Wrap(errors.New("ydb: queue is full"))
40
41
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
41
42
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
0 commit comments