Use fast checkpoint in PostgresNode::backup()

Should cause tests to be a bit faster
This commit is contained in:
Alvaro Herrera 2020-10-21 14:37:26 -03:00
parent 5f6463a20a
commit ddc728d437
No known key found for this signature in database
GPG Key ID: 1C20ACB9D5C564AE

View File

@ -553,8 +553,10 @@ sub backup
my $name = $self->name;
print "# Taking pg_basebackup $backup_name from node \"$name\"\n";
TestLib::system_or_bail('pg_basebackup', '-D', $backup_path, '-h',
$self->host, '-p', $self->port, '--no-sync');
TestLib::system_or_bail(
'pg_basebackup', '-D', $backup_path, '-h',
$self->host, '-p', $self->port, '--checkpoint',
'fast', '--no-sync');
print "# Backup finished\n";
return;
}