Compare commits

..

No commits in common. "021c1d8774b7fdcfa866cde33e9280522f65122e" and "92300b2368d586cc50118fa16e48d222ad752b25" have entirely different histories.

View File

@ -2,6 +2,7 @@ package storage
import ( import (
"context" "context"
"crypto/tls"
"fmt" "fmt"
"github.com/ClickHouse/clickhouse-go/v2" "github.com/ClickHouse/clickhouse-go/v2"
@ -28,6 +29,9 @@ func connect() (*driver.Conn, error) {
Database: "monitoring", Database: "monitoring",
Username: "default", Username: "default",
}, },
TLS: &tls.Config{
InsecureSkipVerify: true,
},
}) })
) )