diff options
author | Bruce Momjian <bruce@momjian.us> | 2011-05-10 10:42:43 -0400 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2011-05-10 10:42:43 -0400 |
commit | 5059cf6ebf36bc9731b8394a1d2c9dba6cb50a3c (patch) | |
tree | d40e6ece688ac125abbcd728a606e1b4f7958202 /contrib/pg_upgrade/server.c | |
parent | a9cc9df021f43a8ecda0924236d22a004baa7d13 (diff) | |
download | postgresql-5059cf6ebf36bc9731b8394a1d2c9dba6cb50a3c.tar.gz postgresql-5059cf6ebf36bc9731b8394a1d2c9dba6cb50a3c.zip |
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.
Diffstat (limited to 'contrib/pg_upgrade/server.c')
-rw-r--r-- | contrib/pg_upgrade/server.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/contrib/pg_upgrade/server.c b/contrib/pg_upgrade/server.c index 224fc9642e9..8fce305d2e2 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); |