Skip to content

Commit

Permalink
remove comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Amogh-Bharadwaj committed Feb 13, 2024
1 parent 4274791 commit 5fdd05d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion flow/connectors/clickhouse/clickhouse.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package connclickhouse

import (
"context"
"crypto/tls"
"database/sql"
"fmt"
"net/url"
Expand Down Expand Up @@ -136,7 +137,7 @@ func connect(ctx context.Context, config *protos.ClickhouseConfig) (*sql.DB, err
Username: config.User,
Password: config.Password,
},
// TLS: &tls.Config{MinVersion: tls.VersionTLS13},
TLS: &tls.Config{MinVersion: tls.VersionTLS13},
Compression: &clickhouse.Compression{Method: clickhouse.CompressionLZ4},
ClientInfo: clickhouse.ClientInfo{
Products: []struct {
Expand Down

0 comments on commit 5fdd05d

Please sign in to comment.