Skip to content

Commit aaa3638

Browse files
authored
fix: set a fixed version of Barman to 3.11.1 (#119)
The latest released version of Barman 3.12.0 introduced a change of the format making that version incompatible with CloudNativePG For more information check the following commit: https://github.com/EnterpriseDB/barman/pull/1029/files Signed-off-by: Jonathan Gonzalez V <[email protected]>
1 parent 30b0073 commit aaa3638

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/repo_funcs.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ fetch_postgres_image_version() {
3232
# Get the latest Barman version
3333
latest_barman_version=
3434
_raw_get_latest_barman_version() {
35-
curl -s https://pypi.org/pypi/barman/json | jq -r '.releases | keys[]' | sort -Vr | head -n1
35+
# curl -s https://pypi.org/pypi/barman/json | jq -r '.releases | keys[]' | sort -Vr | head -n1
36+
echo "3.11.1"
3637
}
3738
get_latest_barman_version() {
3839
if [ -z "$latest_barman_version" ]; then

0 commit comments

Comments
 (0)