Skip to content

Commit 28a0e18

Browse files
authored
fix: set a fixed version of Barman to 3.12.1 (#159)
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 <[email protected]>
1 parent 327d07b commit 28a0e18

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.12.1"
3637
}
3738
get_latest_barman_version() {
3839
if [ -z "$latest_barman_version" ]; then

0 commit comments

Comments
 (0)