From 33a272b205403d37ccad566412baf914c3559429 Mon Sep 17 00:00:00 2001 From: Euler Taveira Date: Fri, 3 Jan 2020 13:59:41 -0300 Subject: [PATCH] Adjust instructions Use default max_replication_slots value as suggestion for examples / tests. --- Makefile | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index f5f8fda..eee3ddb 100644 --- a/Makefile +++ b/Makefile @@ -31,6 +31,6 @@ endif # postgresql.conf: # # wal_level = logical -# max_replication_slots = 4 +# max_replication_slots = 10 # # Also, you should start the server before executing it. diff --git a/README.md b/README.md index b469c71..d084e8f 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,7 @@ You need to set up at least two parameters at postgresql.conf: ``` wal_level = logical -max_replication_slots = 1 +max_replication_slots = 10 ``` After changing these parameters, a restart is needed.