From ff99f937ea7b1acf0d46e2ac58aa949c20c67a99 Mon Sep 17 00:00:00 2001 From: Stas Kelvich Date: Fri, 11 Nov 2022 01:12:12 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=80=20what=20happens?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- control_plane/src/compute.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/control_plane/src/compute.rs b/control_plane/src/compute.rs index 359948a8c9..b2323db531 100644 --- a/control_plane/src/compute.rs +++ b/control_plane/src/compute.rs @@ -287,7 +287,7 @@ impl PostgresNode { conf.append("shared_buffers", "1MB"); conf.append("fsync", "off"); conf.append("max_connections", "100"); - conf.append("wal_level", "replica"); + conf.append("wal_level", "logical"); // wal_sender_timeout is the maximum time to wait for WAL replication. // It also defines how often the walreciever will send a feedback message to the wal sender. conf.append("wal_sender_timeout", "5s");