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 da0dbea9c3
commit 750c59d7ec
1 changed files with 1 additions and 1 deletions

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