From e23f5afc5f6d8873b624bffdc52109fa1dc4af8c Mon Sep 17 00:00:00 2001 From: Ian Barwick Date: Thu, 28 Mar 2019 10:53:43 +0900 Subject: [PATCH] doc: note valid characters for "node_name" "node_name" will be used as "application_name", so should only contain characters valid for that; see: https://www.postgresql.org/docs/current/runtime-config-logging.html#GUC-APPLICATION-NAME Not yet enforced. --- doc/configuration-file-required-settings.sgml | 3 ++- repmgr.conf.sample | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/doc/configuration-file-required-settings.sgml b/doc/configuration-file-required-settings.sgml index feff833c..f0cbe580 100644 --- a/doc/configuration-file-required-settings.sgml +++ b/doc/configuration-file-required-settings.sgml @@ -40,7 +40,8 @@ to say the least. - Maximum length is 63 characters. + The string's maximum length is 63 characters and it should + contain only printable ASCII characters. diff --git a/repmgr.conf.sample b/repmgr.conf.sample index 8b718e0e..97ee8010 100644 --- a/repmgr.conf.sample +++ b/repmgr.conf.sample @@ -28,7 +28,8 @@ # node's current role, e.g. 'primary' or 'standby1', # as roles can change and it will be confusing if # the current primary is called 'standby1'. - # Maximum length is 63 characters. + # The string's maximum length is 63 characters and it should + # contain only printable ASCII characters. #conninfo='' # Database connection information as a conninfo string. # All servers in the cluster must be able to connect to