You've already forked pgbackrest
mirror of
https://github.com/pgbackrest/pgbackrest.git
synced 2025-06-18 23:57:33 +02:00
Fix test writing "null" into manifest files.
"null" is not allowed in the manifest format (null values should be missing instead) but Perl was treating the invalid values written by this test as if they were missing. Update the test code to remove the values rather than setting them to "null".
This commit is contained in:
@ -615,7 +615,7 @@ sub run
|
||||
$strFullBackup,
|
||||
{&MANIFEST_SECTION_TARGET_PATH =>
|
||||
{&MANIFEST_TARGET_PGDATA =>
|
||||
{&MANIFEST_SUBKEY_USER => undef, &MANIFEST_SUBKEY_GROUP => undef, &MANIFEST_SUBKEY_MODE => undef}}},
|
||||
{&MANIFEST_SUBKEY_USER => undef, &MANIFEST_SUBKEY_GROUP => undef}}},
|
||||
false);
|
||||
|
||||
delete($oManifest{&MANIFEST_SECTION_TARGET_PATH}{&MANIFEST_TARGET_PGDATA}{&MANIFEST_SUBKEY_USER});
|
||||
|
Reference in New Issue
Block a user