Skip to content

Commit

Permalink
fix: recursion error into calling
Browse files Browse the repository at this point in the history
  • Loading branch information
PureWhiteWu committed Feb 19, 2024
1 parent 9bc9ae3 commit 830e6e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pilota/src/thrift/error/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ impl From<TransportException> for ThriftException {

impl From<std::io::Error> for ThriftException {
fn from(e: std::io::Error) -> Self {
e.into()
ThriftException::Transport(TransportException::from(e))
}
}

Expand Down

0 comments on commit 830e6e4

Please sign in to comment.