Commit 43588f58 authored by Peter Eisentraut's avatar Peter Eisentraut

Turn on log_replication_commands in PostgresNode

This is useful for example for the pg_basebackup and related tests.
parent 9a50a93c
...@@ -419,6 +419,7 @@ sub init ...@@ -419,6 +419,7 @@ sub init
print $conf "restart_after_crash = off\n"; print $conf "restart_after_crash = off\n";
print $conf "log_line_prefix = '%m [%p] %q%a '\n"; print $conf "log_line_prefix = '%m [%p] %q%a '\n";
print $conf "log_statement = all\n"; print $conf "log_statement = all\n";
print $conf "log_replication_commands = on\n";
print $conf "wal_retrieve_retry_interval = '500ms'\n"; print $conf "wal_retrieve_retry_interval = '500ms'\n";
print $conf "port = $port\n"; print $conf "port = $port\n";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment