fix_log_002_algorithm.patch

application/octet-stream

Filename: fix_log_002_algorithm.patch
Type: application/octet-stream
Part: 0
Message: Re: backup manifests

Patch

Same data as JSON: GET /api/v1/attachments/:id/patch the parsed metadata as JSON — format, series position, per-file stats; never the diff bytes. API reference →
Format: unified
File+
src/bin/pg_validatebackup/t/002_algorithm.pl 1 1
diff --git a/src/bin/pg_validatebackup/t/002_algorithm.pl b/src/bin/pg_validatebackup/t/002_algorithm.pl
index 2046a709b4..98871e12a5 100644
--- a/src/bin/pg_validatebackup/t/002_algorithm.pl
+++ b/src/bin/pg_validatebackup/t/002_algorithm.pl
@@ -17,7 +17,7 @@ for my $algorithm (qw(bogus none crc32c sha224 sha256 sha384 sha512))
 {
 	my $backup_path = $master->backup_dir . '/' . $algorithm;
 	my @backup = ('pg_basebackup', '-D', $backup_path,
-				  '--manifest-checksum', $algorithm,
+				  '--manifest-checksums', $algorithm,
 				  '--no-sync');
 	my @validate = ('pg_validatebackup', '-e', $backup_path);