Logging errors breaks some tests.

This commit is contained in:
Itamar Turner-Trauring 2023-02-24 09:53:28 -05:00
parent 96e1e9ffac
commit e09d19463d
2 changed files with 4 additions and 2 deletions

View File

@ -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...

View File

@ -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)