diff options
author | Tatsuo Ishii | 2017-07-31 01:46:32 +0000 |
---|---|---|
committer | Tatsuo Ishii | 2017-07-31 01:46:32 +0000 |
commit | 9fe63092b541e48aebb1190179b47249672a8560 (patch) | |
tree | 73e22184019911c19e813f811ba8caa6bfdca685 | |
parent | cc9f08b6b813e30789100b6b34110d8be1090ba0 (diff) |
Add missing comment in postgresql.conf.
max_logical_replication_workers requires to restart server to reflect
the new value. Per Yugo Nagata. Minor editing by me.
-rw-r--r-- | src/backend/utils/misc/postgresql.conf.sample | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/backend/utils/misc/postgresql.conf.sample b/src/backend/utils/misc/postgresql.conf.sample index 2b1ebb797e..e33a4ef74b 100644 --- a/src/backend/utils/misc/postgresql.conf.sample +++ b/src/backend/utils/misc/postgresql.conf.sample @@ -277,6 +277,7 @@ # These settings are ignored on a publisher. #max_logical_replication_workers = 4 # taken from max_worker_processes + # (change requires restart) #max_sync_workers_per_subscription = 2 # taken from max_logical_replication_workers |