From a660f3a07b98c30c9b7e2d0285505a0e3782a593 Mon Sep 17 00:00:00 2001 From: Anastasia Alexandrova Date: Tue, 9 Jul 2024 11:59:20 +0300 Subject: [PATCH] Fix patroni.yml configuration file (#609) (#614) There is a typo on patroni.yml configuration file. The documentation says to create DATA_DIR variable. But in the patroni.yml file it is referenced as DATADIR. Co-authored-by: varaltapaolo <65187936+varaltapaolo@users.noreply.github.com> --- docs/solutions/ha-setup-apt.md | 2 +- docs/solutions/ha-setup-yum.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/solutions/ha-setup-apt.md b/docs/solutions/ha-setup-apt.md index 13ddb4fea..caeebdca3 100644 --- a/docs/solutions/ha-setup-apt.md +++ b/docs/solutions/ha-setup-apt.md @@ -355,7 +355,7 @@ Run the following commands on all nodes. You can do this in parallel: cluster_name: cluster_1 listen: 0.0.0.0:5432 connect_address: ${NODE_IP}:5432 - data_dir: ${DATADIR} + data_dir: ${DATA_DIR} bin_dir: ${PG_BIN_DIR} pgpass: /tmp/pgpass authentication: diff --git a/docs/solutions/ha-setup-yum.md b/docs/solutions/ha-setup-yum.md index d499df6da..4fea03ac1 100644 --- a/docs/solutions/ha-setup-yum.md +++ b/docs/solutions/ha-setup-yum.md @@ -373,7 +373,7 @@ Run the following commands on all nodes. You can do this in parallel: cluster_name: cluster_1 listen: 0.0.0.0:5432 connect_address: ${NODE_IP}:5432 - data_dir: ${DATADIR} + data_dir: ${DATA_DIR} bin_dir: ${PG_BIN_DIR} pgpass: /tmp/pgpass authentication: