Currently, distributed will truncate an exception if it is longer than 1000 characters (lines?)
|
e2 = truncate_exception(e, 1000) |
From a user perspective this is very jarring because it makes debugging nearly impossible and it isn't obvious dask is the one truncating the error. Googling for "Long error message" doesn't yield anything useful. Having a way to override the limit (and informing the user how to do that in the error message) would make it possible for users to proceed when this problem occurs.
Currently, distributed will truncate an exception if it is longer than 1000 characters (lines?)
distributed/distributed/core.py
Line 843 in dbb529b
From a user perspective this is very jarring because it makes debugging nearly impossible and it isn't obvious dask is the one truncating the error. Googling for "Long error message" doesn't yield anything useful. Having a way to override the limit (and informing the user how to do that in the error message) would make it possible for users to proceed when this problem occurs.