We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14e96fe commit e553617Copy full SHA for e553617
CHANGELOG.md
@@ -1,3 +1,6 @@
1
+## 3.8.6
2
+* Added `ydb.WithInsecure()` option
3
+
4
## 3.8.5
5
* Fixed version
6
internal/meta/version.go
@@ -1,5 +1,5 @@
package meta
const (
- Version = "ydb-go-sdk/3.8.5"
+ Version = "ydb-go-sdk/3.8.6"
)
options.go
@@ -77,6 +77,13 @@ func WithSecure(secure bool) Option {
77
}
78
79
80
+func WithInsecure() Option {
81
+ return func(ctx context.Context, c *connection) error {
82
+ c.options = append(c.options, config.WithSecure(false))
83
+ return nil
84
+ }
85
+}
86
87
type Level logger.Level
88
89
0 commit comments