We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8328e1f commit 140bb59Copy full SHA for 140bb59
2 files changed
synapse/util/async_helpers.py
@@ -812,7 +812,6 @@ def time_it_out() -> None:
812
timed_out[0] = True
813
814
try:
815
- logger.info("asdf timeout_deferred cancel")
816
with PreserveLoggingContext():
817
deferred.cancel()
818
except Exception: # if we throw any exception it'll break time outs
tests/util/test_async_helpers.py
@@ -307,7 +307,6 @@ async def competing_task() -> None:
307
#
308
# In this specific test, we expect the deferred to timeout and raise an
309
# exception at this point.
310
- logger.info("asdf awaiting make_deferred_yieldable")
311
await make_deferred_yieldable(timing_out_d)
312
313
self.fail(
0 commit comments