Proper Internal Error Reporting #6
Labels
dev-niceities
This would make contributors lives easier
enhancement
New feature or request
hard
priority 1
Highest priority
Right now, internal server errors are propagated until they are blindly
.unwrap()
ed in the top level request function, which is annoying for a number of reasons:RUST_BACKTRACE=1
backtraces are too big)The main problem is that either
cassandra_cpp::Result
or generic error reporting libraries likeanyhow
orerror_stack
aren't thread-safe, making it impossible to use in the server.The text was updated successfully, but these errors were encountered: