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
thrift Exception type should have a "formatter" that prints the error string instead of deafult description(), like below
impl Display for InterfaceErr {
fn fmt(&self, f: &mut Formatter) -> fmt::Result {
if let Some(ref why) = (*self).why {
write!(f, "{:?}", why)
} else {
self.description().fmt(f)
}
}
}
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: