From: Bruce Momjian Date: Tue, 10 May 2011 14:42:43 +0000 (-0400) Subject: In pg_upgrade, remove suggestion of setting pg_hba.conf to 'trust', now X-Git-Tag: REL9_1_BETA2~145 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5059cf6ebf36bc9731b8394a1d2c9dba6cb50a3c;p=postgresql In pg_upgrade, remove suggestion of setting pg_hba.conf to 'trust', now that we report the libpq connection failure string. Per suggestion from Robert Haas. --- diff --git a/contrib/pg_upgrade/server.c b/contrib/pg_upgrade/server.c index 224fc9642e..8fce305d2e 100644 --- a/contrib/pg_upgrade/server.c +++ b/contrib/pg_upgrade/server.c @@ -193,8 +193,7 @@ start_postmaster(ClusterInfo *cluster) PQerrorMessage(conn)); if (conn) PQfinish(conn); - pg_log(PG_FATAL, "unable to connect to %s postmaster started with the command: %s\n" - "Perhaps pg_hba.conf was not set to \"trust\".\n", + pg_log(PG_FATAL, "unable to connect to %s postmaster started with the command: %s\n", CLUSTER_NAME(cluster), cmd); } PQfinish(conn);