Skip to content

Commit 27b72d7

Browse files
committed
fix style
1 parent f31ab61 commit 27b72d7

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

internal/conn/conn.go

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -200,11 +200,7 @@ func (c *conn) take(ctx context.Context) (cc *grpc.ClientConn, err error) {
200200
// three slashes in "ydb:///" is ok. It needs for good parse scheme in grpc resolver.
201201
address := "ydb:///" + c.endpoint.Address()
202202

203-
cc, err = grpc.DialContext(
204-
ctx,
205-
address,
206-
c.grpcDialOptions...,
207-
)
203+
cc, err = grpc.DialContext(ctx, address, c.grpcDialOptions...)
208204
if err != nil {
209205
err = xerrors.WithStackTrace(
210206
xerrors.Retryable(

0 commit comments

Comments
 (0)