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
error: error: error: request or response body error: error reading a body from connection: protocol error: unspecific protocol error detected
I'm sure each of these layers of error probably means something, in this scenario it doesn't matter so much but maybe something like anyhow's error contexts could be used to nest errors more ergonomically
The text was updated successfully, but these errors were encountered:
I think that may be a result of round-tripping in the error type. ergo_runtime::Error has a Display which looks like error: <message>, and if that error has to be converted to Box<dyn std::error::Error> to pass through an external library then that's basically what would end up happening. Internally ergo_runtime::Error can accommodate nested errors and context nicely.
I'm sure each of these layers of error probably means something, in this scenario it doesn't matter so much but maybe something like
anyhow
's error contexts could be used to nest errors more ergonomicallyThe text was updated successfully, but these errors were encountered: