Replies: 1 comment
-
This panic information does not come from rayon, but the standard library's default panic handler. You can use You might also like rayon's |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I just got a panic because the disk was full, the file writer thread exited with error, and the file content sender hit an
expect
I wrote (code). Though, this is not the point.The point is, the panic information could probably be better.
It seems that the printout from different threads were mixed, which is probably the biggest problem.
The message is long, probably because the default behavior is to keep running the other tasks while one of them fails (which is fine).
thread <unnamed>
is not very helpful…I can deal with this, but someone newer to Rust might be blown off.
Anyway, just a suggestion.
Beta Was this translation helpful? Give feedback.
All reactions