Skip to content

Commit f1a164d

Browse files
committed
fix CHANGELOG + sugar.DSN
1 parent d80f3a3 commit f1a164d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
* Remove accounting load factor (unused field) in balancers
2-
* Used anonymous credentials by default
1+
* Removed accounting load factor (unused field) in balancers
2+
* Enabled by default anonymous credentials
33
* Enabled by default internal dns resolver
44
* Removed from defaults `grpc.WithBlock()` option
55
* Added `ydb.Open` method with required param connection string

sugar/dsn.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ func DSN(endpoint, database string, secure bool) (s string) {
2626
cs := connectionString{
2727
endpoint: endpoint,
2828
database: database,
29-
secure: true,
29+
secure: secure,
3030
}
3131
return cs.Build()
3232
}

0 commit comments

Comments
 (0)