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
feat(error): preserve InvalidUri details in error source chain
When an invalid URI is parsed by the http crate, the InvalidUri error
contains useful details about what part of the URI was invalid. Previously
this information was discarded when converting to hyper::Error.
Now the original InvalidUri/InvalidUriParts error is stored as the
source of the hyper::Error, making it available through the standard
Error::source() chain and downcastable to the concrete type.
Closes#3043
0 commit comments