]> granicus.if.org Git - postgresql/commitdiff
Ten-second timeout in 013_crash_restart.pl is not enough, let's try 60.
authorTom Lane <tgl@sss.pgh.pa.us>
Sat, 23 Sep 2017 16:56:31 +0000 (12:56 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Sat, 23 Sep 2017 16:56:31 +0000 (12:56 -0400)
Per buildfarm member topminnow.

src/test/recovery/t/013_crash_restart.pl

index ce35bdd6338990668d6778af7d1a78f806aad5ce..ca02054ff0c797365c556d9266d4d59626c224ed 100644 (file)
@@ -29,9 +29,9 @@ else
 
 # To avoid hanging while expecting some specific input from a psql
 # 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
-# failures in a realistic amount of time.
-my $psql_timeout = IPC::Run::timer(10);
+# should never trigger even on very slow machines, unless something
+# is really wrong.
+my $psql_timeout = IPC::Run::timer(60);
 
 my $node = get_new_node('master');
 $node->init(allows_streaming => 1);