Turn off back pressure by default

This commit is contained in:
Alexey Kondratov
2021-10-21 23:19:19 +03:00
committed by Alexey Kondratov
parent 86a28458c6
commit 9070a4dc02
2 changed files with 2 additions and 2 deletions

View File

@@ -300,7 +300,7 @@ impl PostgresNode {
conf.append("shared_buffers", "1MB");
conf.append("fsync", "off");
conf.append("max_connections", "100");
conf.append("wal_sender_timeout", "10s");
conf.append("wal_sender_timeout", "0");
conf.append("wal_level", "replica");
conf.append("listen_addresses", &self.address.ip().to_string());
conf.append("port", &self.address.port().to_string());