File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ package topicoptions_test
22
33import (
44 "github.com/ydb-platform/ydb-go-sdk/v3"
5- "github.com/ydb-platform/ydb-go-sdk/v3/internal/topic"
65 "github.com/ydb-platform/ydb-go-sdk/v3/topic/topicoptions"
76)
87
@@ -13,7 +12,7 @@ func ExampleWithReaderCheckRetryErrorFunction() {
1312 "consumer" ,
1413 topicoptions .ReadTopic ("topic" ),
1514 topicoptions .WithReaderCheckRetryErrorFunction (
16- func (errInfo topic. PublicCheckErrorRetryArgs ) topic. PublicCheckRetryResult {
15+ func (errInfo topicoptions. CheckErrorRetryArgs ) topicoptions. CheckErrorRetryResult {
1716 // Retry not found operations
1817 if ydb .IsOperationErrorNotFoundError (errInfo .Error ) {
1918 return topicoptions .CheckErrorRetryDecisionRetry
Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ package topicoptions_test
22
33import (
44 "github.com/ydb-platform/ydb-go-sdk/v3"
5- "github.com/ydb-platform/ydb-go-sdk/v3/internal/topic"
65 "github.com/ydb-platform/ydb-go-sdk/v3/topic/topicoptions"
76)
87
@@ -12,7 +11,7 @@ func ExampleWithWriterCheckRetryErrorFunction() {
1211 "" ,
1312 "" ,
1413 topicoptions .WithWriterCheckRetryErrorFunction (
15- func (errInfo topic. PublicCheckErrorRetryArgs ) topic. PublicCheckRetryResult {
14+ func (errInfo topicoptions. CheckErrorRetryArgs ) topicoptions. CheckErrorRetryResult {
1615 // Retry for all transport errors
1716 if ydb .IsTransportError (errInfo .Error ) {
1817 return topicoptions .CheckErrorRetryDecisionRetry
You can’t perform that action at this time.
0 commit comments