From 42e223e95a1a9e9d34f9d76683db563df16f9ae7 Mon Sep 17 00:00:00 2001 From: Vlad Lazar Date: Wed, 13 Nov 2024 15:32:43 +0100 Subject: [PATCH] pageserver: use interpreted wal proto by default --- libs/pageserver_api/src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/pageserver_api/src/config.rs b/libs/pageserver_api/src/config.rs index e71fc14a353f..177bf1f53ae5 100644 --- a/libs/pageserver_api/src/config.rs +++ b/libs/pageserver_api/src/config.rs @@ -320,7 +320,7 @@ pub mod defaults { pub const DEFAULT_IO_BUFFER_ALIGNMENT: usize = 512; pub const DEFAULT_WAL_RECEIVER_PROTOCOL: utils::postgres_client::PostgresClientProtocol = - utils::postgres_client::PostgresClientProtocol::Vanilla; + utils::postgres_client::PostgresClientProtocol::Interpreted; } impl Default for ConfigToml {