diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2017-09-23 12:56:31 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2017-09-23 12:56:31 -0400 |
commit | 01c7d3ef85d4b0e1c52cc1a3542864f95f386f76 (patch) | |
tree | e4a9686e7fcf59aca9854ef646745dd824797368 /src | |
parent | 0c5803b450e0cc29b3527df3f352e6f18a038cc6 (diff) | |
download | postgresql-01c7d3ef85d4b0e1c52cc1a3542864f95f386f76.tar.gz postgresql-01c7d3ef85d4b0e1c52cc1a3542864f95f386f76.zip |
Ten-second timeout in 013_crash_restart.pl is not enough, let's try 60.
Per buildfarm member topminnow.
Diffstat (limited to 'src')
-rw-r--r-- | src/test/recovery/t/013_crash_restart.pl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test/recovery/t/013_crash_restart.pl b/src/test/recovery/t/013_crash_restart.pl index ce35bdd6338..ca02054ff0c 100644 --- a/src/test/recovery/t/013_crash_restart.pl +++ b/src/test/recovery/t/013_crash_restart.pl @@ -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); |