Fix mistake in comment

The node->restart() function doesn't take a mode argument.
This commit is contained in:
Peter Eisentraut 2017-01-12 12:00:00 -05:00
parent 4b5f399177
commit d2d7163d47

View File

@ -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