Open
Description
Currently the errors=
kwarg for Client.gather
supports either raising exceptions of failed tasks, or skipping them altogether. Today I ran into a case where it would have been convenient if we supported returning the actual exception that was raised in the gathered results. This is similar to what we already support in Client.run
with on_error="return"
distributed/distributed/client.py
Lines 2961 to 2963 in 774874e
It'd be nice if we had something similar for Cilent.gather