We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e30f3a9 commit c128307Copy full SHA for c128307
src/test/recovery/t/007_twophase.pl
@@ -5,7 +5,7 @@
5
use Test::More tests => 11;
6
7
# Setup master node
8
-my $node_master = get_new_node("Candie");
+my $node_master = get_new_node("master");
9
$node_master->init(allows_streaming => 1);
10
$node_master->append_conf('postgresql.conf', qq(
11
max_prepared_transactions = 10
@@ -15,7 +15,7 @@
15
$node_master->psql('postgres', "create table t(id int)");
16
17
18
-my $node_slave = get_new_node('Django');
+my $node_slave = get_new_node('slave');
19
$node_slave->init_from_backup($node_master, 'master_backup', has_streaming => 1);
20
$node_slave->start;
21
0 commit comments