Skip to content

Commit

Permalink
Fix patroni.yml configuration file (#609) (#614)
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
nastena1606 and varaltapaolo authored Jul 9, 2024
1 parent 4adf659 commit a660f3a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/solutions/ha-setup-apt.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion docs/solutions/ha-setup-yum.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit a660f3a

Please sign in to comment.