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
#92 left a few important methods of MutableMapping prone to race conditions.
get() may or may not be thread-safe depending on the implementation details in collections.abc. pop(), popitem() and setdefault() are definitely not thread-safe at the moment of writing.
Worth noting that this does not impact dask/distributed; the exclusion of their usage is enforced by the distributed.spill.AsyncBufferProto API contract.
The text was updated successfully, but these errors were encountered:
#92 left a few important methods of MutableMapping prone to race conditions.
get()
may or may not be thread-safe depending on the implementation details in collections.abc.pop()
,popitem()
andsetdefault()
are definitely not thread-safe at the moment of writing.Worth noting that this does not impact dask/distributed; the exclusion of their usage is enforced by the
distributed.spill.AsyncBufferProto
API contract.The text was updated successfully, but these errors were encountered: