Skip to content

Commit

Permalink
fix compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
onewe committed May 11, 2024
1 parent aff4c63 commit 9cc8769
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dubbo/src/extension/invoker_extension.rs
Original file line number Diff line number Diff line change
Expand Up @@ -149,9 +149,10 @@ pub mod proxy {
let callback_ret = tx.send(result);
match callback_ret {
Ok(_) => {}
Err(err) => {
Err(Err(err)) => {
error!("invoke method has been called, but callback to caller failed. {:?}", err);
}
_ => {}
}
}
InvokerOpt::Url(tx) => {
Expand Down

0 comments on commit 9cc8769

Please sign in to comment.