Skip to content

Commit

Permalink
fixing typo
Browse files Browse the repository at this point in the history
  • Loading branch information
silva-fj committed Feb 3, 2025
1 parent 84ff56e commit 364d0a5
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ pub fn register_submit_plain_request<
};
let join_handle = task::spawn_blocking({
let ctx = ctx.clone();
let aes_request = request.clone();
|| handle_plain_request(aes_request, ctx, Handle::current())
let plain_request = request.clone();
|| handle_plain_request(plain_request, ctx, Handle::current())
});
let (native_call, auth_type) = join_handle.await.map_err(|e| {
log::error!("Failed to handle AES request: {:?}", e);
log::error!("Failed to handle Plain request: {:?}", e);
ErrorCode::InternalError
})??;
let (response_sender, response_receiver) = oneshot::channel();
Expand Down

0 comments on commit 364d0a5

Please sign in to comment.