From c8dffdfc1c5c1c330963b3e93844b885d8e504a0 Mon Sep 17 00:00:00 2001 From: will <87208113+db-will@users.noreply.github.com> Date: Wed, 1 Jan 2025 16:32:25 -0500 Subject: [PATCH] Update cmd/go-tpc/main.go MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Daniƫl van Eeden --- cmd/go-tpc/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/go-tpc/main.go b/cmd/go-tpc/main.go index 28ccd51..010b75e 100644 --- a/cmd/go-tpc/main.go +++ b/cmd/go-tpc/main.go @@ -122,7 +122,7 @@ func newDB(targets []string, driver string, user string, password string, dbName drv = &mysql.MySQLDriver{} case pgDriver: if len(sslCA) > 0 { - panic("postgres driver doesn't support tls yet") + panic("postgresql driver doesn't support TLS yet") } dsn := fmt.Sprintf("postgres://%s:%s@%s/%s", user, password, addr, dbName)