Merge lp:~frankban/launchpad/bug-1003040-again into lp:launchpad

Proposed by Francesco Banconi
Status: Merged
Approved by: Gary Poster
Approved revision: no longer in the source branch.
Merged at revision: 15379
Proposed branch: lp:~frankban/launchpad/bug-1003040-again
Merge into: lp:launchpad
Diff against target: 12 lines (+1/-1)
1 file modified
lib/lp/services/webapp/tests/test_error.py (+1/-1)
To merge this branch: bzr merge lp:~frankban/launchpad/bug-1003040-again
Reviewer Review Type Date Requested Status
Gary Poster (community) Approve
Review via email: mp+109128@code.launchpad.net

Commit message

Increased retries in lib/lp/services/webapp/tests/test_error.py because bug 1003040 was seen again on a parallel tests run with 32 cores.

Description of the change

== Changes ==

Increased retries because this failure was seen again on a parallel tests run with 32 cores.

No QA

To post a comment you must log in.
Revision history for this message
Gary Poster (gary) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'lib/lp/services/webapp/tests/test_error.py'
2--- lib/lp/services/webapp/tests/test_error.py 2012-05-30 15:58:14 +0000
3+++ lib/lp/services/webapp/tests/test_error.py 2012-06-08 08:25:24 +0000
4@@ -66,7 +66,7 @@
5 else:
6 self.fail("We should have gotten an HTTP error")
7
8- def retryConnection(self, url, retries=10):
9+ def retryConnection(self, url, retries=60):
10 """Retry to connect to *url* for *retries* times.
11
12 Return the file-like object returned by *urllib2.urlopen(url)*.