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/topicclientinternal/client.go
+12-5
Original file line number
Diff line number
Diff line change
@@ -26,9 +26,7 @@ import (
26
26
"github.com/ydb-platform/ydb-go-sdk/v3/trace"
27
27
)
28
28
29
-
var (
30
-
errUnsupportedTransactionType=xerrors.Wrap(errors.New("ydb: unsuppotred transaction type. Use transaction from Driver().Query().DoTx(...)"))
31
-
)
29
+
varerrUnsupportedTransactionType=xerrors.Wrap(errors.New("ydb: unsuppotred transaction type. Use transaction from Driver().Query().DoTx(...)")) //nolint:lll
Copy file name to clipboardExpand all lines: internal/topic/topicwriterinternal/writer_reconnector.go
+2-1
Original file line number
Diff line number
Diff line change
@@ -38,7 +38,7 @@ var (
38
38
errNoAllowedCodecs=xerrors.Wrap(errors.New("ydb: no allowed codecs for write to topic"))
39
39
errLargeMessage=xerrors.Wrap(errors.New("ydb: message uncompressed size more, then limit"))
40
40
PublicErrQueueIsFull=xerrors.Wrap(errors.New("ydb: queue is full"))
41
-
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+"))
41
+
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
42
42
43
43
// errProducerIDNotEqualMessageGroupID is temporary
44
44
// WithMessageGroupID is optional parameter because it allowed to be skipped by protocol.
0 commit comments