You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
distributed/cfexecutor.py:146: inresult_iteratorself._client.cancel(remaining)
distributed/client.py:2212: incancelreturnself.sync(self._cancel, futures, asynchronous=asynchronous, force=force)
distributed/client.py:843: insyncreturnsync(
distributed/utils.py:353: insyncraiseexc.with_traceback(tb)
distributed/utils.py:336: infresult[0] =yieldfuture
../../../miniconda3/envs/dask-distributed/lib/python3.8/site-packages/tornado/gen.py:762: inrunvalue=future.result()
distributed/client.py:2192: in_cancelawaitself.scheduler.cancel(keys=keys, client=self.id, force=force)
distributed/core.py:862: insend_recv_from_rpcresult=awaitsend_recv(comm=comm, op=key, **kwargs)
distributed/core.py:645: insend_recvresponse=awaitcomm.read(deserializers=deserializers)
distributed/comm/tcp.py:196: inreadframes_nbytes=awaitstream.read_bytes(fmt_size)
../../../miniconda3/envs/dask-distributed/lib/python3.8/site-packages/tornado/iostream.py:421: inread_bytesfuture=self._start_read()
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self=<tornado.iostream.IOStreamobjectat0x7fa73fc71130>def_start_read(self) ->Future:
ifself._read_futureisnotNone:
# It is an error to start a read while a prior read is unresolved.# However, if the prior read is unresolved because the stream was# closed without satisfying it, it's better to raise# StreamClosedError instead of AssertionError. In particular, this# situation occurs in harmless situations in http1connection.py and# an AssertionError would be logged noisily.## On the other hand, it is legal to start a new read while the# stream is closed, in case the read can be satisfied from the# read buffer. So we only want to check the closed status of the# stream if we need to decide what kind of error to raise for# "already reading".## These conditions have proven difficult to test; we have no# unittests that reliably verify this behavior so be careful# when making changes here. See #2651 and #2719.self._check_closed()
>assertself._read_futureisNone, "Already reading"EAssertionError: Alreadyreading
../../../miniconda3/envs/dask-distributed/lib/python3.8/site-packages/tornado/iostream.py:809: AssertionError
The text was updated successfully, but these errors were encountered:
We've seen lately a few failing tests with low level tornado assert errors
E.g. in
active_threads
changing size during iteration #4729CI runs
The text was updated successfully, but these errors were encountered: