Skip to content

Commit ca108be

Browse files
committed
Remove references to backup_fs_hot() in Cluster.pm
This routine has been removed in 39969e2 with the exclusive backup mode but there were still references to it. Issue noticed while working on 071e3ad.
1 parent 9493004 commit ca108be

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/test/perl/PostgreSQL/Test/Cluster.pm

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,6 @@ PostgreSQL::Test::Cluster - class representing PostgreSQL server instance
6262
# Do an online pg_basebackup
6363
my $ret = $node->backup('testbackup1');
6464
65-
# Take a backup of a running server
66-
my $ret = $node->backup_fs_hot('testbackup2');
67-
6865
# Take a backup of a stopped server
6966
$node->stop;
7067
my $ret = $node->backup_fs_cold('testbackup3')
@@ -759,7 +756,7 @@ Create a backup with a filesystem level copy in subdirectory B<backup_name> of
759756
B<< $node->backup_dir >>, including WAL. The server must be
760757
stopped as no attempt to handle concurrent writes is made.
761758
762-
Use B<backup> or B<backup_fs_hot> if you want to back up a running server.
759+
Use B<backup> if you want to back up a running server.
763760
764761
=cut
765762

0 commit comments

Comments
 (0)