Commit 01c7d3ef authored by Tom Lane's avatar Tom Lane

Ten-second timeout in 013_crash_restart.pl is not enough, let's try 60.

Per buildfarm member topminnow.
parent 0c5803b4
...@@ -29,9 +29,9 @@ else ...@@ -29,9 +29,9 @@ else
# To avoid hanging while expecting some specific input from a psql # To avoid hanging while expecting some specific input from a psql
# instance being driven by us, add a timeout high enough that it # instance being driven by us, add a timeout high enough that it
# should never trigger in a normal run, but low enough to actually see # should never trigger even on very slow machines, unless something
# failures in a realistic amount of time. # is really wrong.
my $psql_timeout = IPC::Run::timer(10); my $psql_timeout = IPC::Run::timer(60);
my $node = get_new_node('master'); my $node = get_new_node('master');
$node->init(allows_streaming => 1); $node->init(allows_streaming => 1);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment