From 36fec34c472266fe2a8f087af7de3945dc198726 Mon Sep 17 00:00:00 2001 From: chrislu Date: Mon, 25 Mar 2024 12:50:43 -0700 Subject: print only adapted url fix https://github.com/seaweedfs/seaweedfs/issues/5424 --- weed/filer/postgres/postgres_store.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'weed/filer/postgres/postgres_store.go') diff --git a/weed/filer/postgres/postgres_store.go b/weed/filer/postgres/postgres_store.go index cacdbd864..0c02f0726 100644 --- a/weed/filer/postgres/postgres_store.go +++ b/weed/filer/postgres/postgres_store.go @@ -92,7 +92,7 @@ func (store *PostgresStore) initialize(upsertQuery string, enableUpsert bool, us store.DB.SetConnMaxLifetime(time.Duration(maxLifetimeSeconds) * time.Second) if err = store.DB.Ping(); err != nil { - return fmt.Errorf("connect to %s error:%v", sqlUrl, err) + return fmt.Errorf("connect to %s error:%v", adaptedSqlUrl, err) } return nil -- cgit v1.2.3