Skip to content

Commit bdfb112

Browse files
authored
fix: set a fixed version of Barman to 3.12.1 (#68)
The latest released version of Barman 3.13.0 introduced a change in the argment list for the restore. For more information check the following issue: cloudnative-pg/cloudnative-pg#6932 Signed-off-by: Jonathan Gonzalez V. <jonathan.gonzalez@enterprisedb.com>
1 parent a5ee89d commit bdfb112

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

PostGIS/update.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,8 @@ fetch_postgres_image_version() {
5151
# Get the latest Barman version
5252
latest_barman_version=
5353
_raw_get_latest_barman_version() {
54-
curl -s https://pypi.org/pypi/barman/json | jq -r '.releases | keys[]' | sort -Vr | head -n1
54+
# curl -s https://pypi.org/pypi/barman/json | jq -r '.releases | keys[]' | sort -Vr | head -n1
55+
echo "3.12.1"
5556
}
5657
get_latest_barman_version() {
5758
if [ -z "$latest_barman_version" ]; then

0 commit comments

Comments
 (0)