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 798c568 commit 876b801Copy full SHA for 876b801
storage/store.go
@@ -165,7 +165,7 @@ func connector(cfg Configuration) (*sql.DB, error) {
165
conn = clickhouse.OpenDB(&options)
166
167
if cfg.MaxOpenConns != nil {
168
- conn.SetMaxIdleConns(int(*cfg.MaxOpenConns))
+ conn.SetMaxOpenConns(int(*cfg.MaxOpenConns))
169
}
170
if cfg.MaxIdleConns != nil {
171
conn.SetMaxIdleConns(int(*cfg.MaxIdleConns))
0 commit comments