aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2017-01-12 12:00:00 -0500
committerPeter Eisentraut <peter_e@gmx.net>2017-01-12 10:24:10 -0500
commit750c59d7ec573f9443af2eb7d9186946bc7e008c (patch)
tree220f5d7be0db5f9a0d5eb0d64d214061c68a1bf1 /src
parentda0dbea9c30e7c91e9e78d72ab3dbee77d7ca0cd (diff)
downloadpostgresql-750c59d7ec573f9443af2eb7d9186946bc7e008c.tar.gz
postgresql-750c59d7ec573f9443af2eb7d9186946bc7e008c.zip
Fix mistake in comment
The node->restart() function doesn't take a mode argument.
Diffstat (limited to 'src')
-rw-r--r--src/test/perl/PostgresNode.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/perl/PostgresNode.pm b/src/test/perl/PostgresNode.pm
index 053c5ea7872..868492b6152 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