diff options
author | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2016-07-25 01:34:35 -0400 |
---|---|---|
committer | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2016-07-25 01:34:35 -0400 |
commit | 2a0f89cd717ce6d49cdc47850577823682167e87 (patch) | |
tree | 8743c8d15b71a484dd703786f71899f3f62e1416 /src | |
parent | e8564ef034333c6ba6fd3d0c6ecf18214a4e988b (diff) | |
download | postgresql-2a0f89cd717ce6d49cdc47850577823682167e87.tar.gz postgresql-2a0f89cd717ce6d49cdc47850577823682167e87.zip |
Give recovery tests more time to finish
These tests are currently only running in buildfarm member hamster,
which is purposefully very slow. This suite has failed a couple of
times recently because of timeouts, so increase the allowed number of
iterations to avoid spurious failures.
Author: Michaƫl Paquier
Diffstat (limited to 'src')
-rw-r--r-- | src/test/perl/PostgresNode.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/perl/PostgresNode.pm b/src/test/perl/PostgresNode.pm index 57679195b42..e629373ea2b 100644 --- a/src/test/perl/PostgresNode.pm +++ b/src/test/perl/PostgresNode.pm @@ -1192,7 +1192,7 @@ sub poll_query_until { my ($self, $dbname, $query) = @_; - my $max_attempts = 90; + my $max_attempts = 180; my $attempts = 0; my ($stdout, $stderr); |