Use unsecure TLS

Signed-off-by: Émile Ré <emile@getprobo.com>
This commit is contained in:
Émile Ré
2026-05-08 18:12:15 +04:00
parent 361fe1d713
commit c76711e8b7

View File

@@ -189,7 +189,7 @@ func newPgClientFromDSN(dsn string) (*pg.Client, error) {
return nil, fmt.Errorf("cannot parse DSN: %w", err)
}
var opts []pg.Option
opts := []pg.Option{pg.WithUnsecureTLS()}
if u.Host != "" {
host := u.Host