From: Peter Eisentraut Date: Thu, 12 Jan 2017 17:00:00 +0000 (-0500) Subject: Fix mistake in comment X-Git-Tag: REL_10_BETA1~1125 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=750c59d7ec573f9443af2eb7d9186946bc7e008c;p=postgresql Fix mistake in comment The node->restart() function doesn't take a mode argument. --- diff --git a/src/test/perl/PostgresNode.pm b/src/test/perl/PostgresNode.pm index 053c5ea787..868492b615 100644 --- a/src/test/perl/PostgresNode.pm +++ b/src/test/perl/PostgresNode.pm @@ -19,7 +19,7 @@ PostgresNode - class representing PostgreSQL server instance # Change a setting and restart $node->append_conf('postgresql.conf', 'hot_standby = on'); - $node->restart('fast'); + $node->restart(); # run a query with psql, like: # echo 'SELECT 1' | psql -qAXt postgres -v ON_ERROR_STOP=1