aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRobert Haas <rhaas@postgresql.org>2016-10-05 13:08:48 -0400
committerRobert Haas <rhaas@postgresql.org>2016-10-05 13:10:22 -0400
commitbfcd07b4444d8fdf1ddaba375aa5b3aea419a898 (patch)
tree876b9a0f3a625b1181e13d5ad024cbbe3d403111 /src
parent76c0b73df6c481a29cf6e45bebeafd6d71957f08 (diff)
downloadpostgresql-bfcd07b4444d8fdf1ddaba375aa5b3aea419a898.tar.gz
postgresql-bfcd07b4444d8fdf1ddaba375aa5b3aea419a898.zip
Update obsolete comments and perldoc.
Loose ends from commit 2a0f89cd717ce6d49cdc47850577823682167e87. Daniel Gustafsson
Diffstat (limited to 'src')
-rw-r--r--src/test/perl/PostgresNode.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/perl/PostgresNode.pm b/src/test/perl/PostgresNode.pm
index fede1e601b9..ca256be07a8 100644
--- a/src/test/perl/PostgresNode.pm
+++ b/src/test/perl/PostgresNode.pm
@@ -1184,7 +1184,7 @@ sub psql
=item $node->poll_query_until(dbname, query)
Run a query once a second, until it returns 't' (i.e. SQL boolean true).
-Continues polling if psql returns an error result. Times out after 90 seconds.
+Continues polling if psql returns an error result. Times out after 180 seconds.
=cut
@@ -1214,7 +1214,7 @@ sub poll_query_until
$attempts++;
}
- # The query result didn't change in 90 seconds. Give up. Print the stderr
+ # The query result didn't change in 180 seconds. Give up. Print the stderr
# from the last attempt, hopefully that's useful for debugging.
diag $stderr;
return 0;