mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-04-06 18:36:44 +00:00
Logging errors breaks some tests.
This commit is contained in:
parent
96e1e9ffac
commit
e09d19463d
@ -951,7 +951,10 @@ async def _pick_a_http_server(
|
||||
result.callback(nurl)
|
||||
|
||||
def failed(failure, failures=[], result=result):
|
||||
log.err(failure, "Failed to connect to NURL")
|
||||
# Logging errors breaks a bunch of tests, and it's not a _bug_ to
|
||||
# have a failed connection, it's often expected and transient. More
|
||||
# of a warning, really?
|
||||
log.msg("Failed to connect to NURL: {}".format(failure))
|
||||
failures.append(None)
|
||||
if len(failures) == len(nurls):
|
||||
# All our potential NURLs failed...
|
||||
|
@ -791,5 +791,4 @@ class PickHTTPServerTests(unittest.SynchronousTestCase):
|
||||
],
|
||||
bad_url: [(0.1, RuntimeError()), (0.1, RuntimeError()), (0.1, RuntimeError())]
|
||||
})
|
||||
self.flushLoggedErrors(ZeroDivisionError, RuntimeError)
|
||||
self.assertEqual(self.successResultOf(d), eventually_good_url)
|
||||
|
Loading…
x
Reference in New Issue
Block a user