summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlvaro Herrera2016-07-25 05:34:35 +0000
committerAlvaro Herrera2016-07-25 05:34:35 +0000
commit2a0f89cd717ce6d49cdc47850577823682167e87 (patch)
tree8743c8d15b71a484dd703786f71899f3f62e1416
parente8564ef034333c6ba6fd3d0c6ecf18214a4e988b (diff)
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
-rw-r--r--src/test/perl/PostgresNode.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/perl/PostgresNode.pm b/src/test/perl/PostgresNode.pm
index 57679195b4..e629373ea2 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);