We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1b76f6 commit 61e1613Copy full SHA for 61e1613
fortanix-vme/fortanix-vme-runner/src/lib.rs
@@ -525,7 +525,9 @@ impl Server {
525
.spawn(move || {
526
let mut conn = ClientConnection::new(stream.unwrap());
527
if let Err(e) = server.handle_client(&mut conn) {
528
- let _ = conn.send(&Response::Failed(e));
+ if let Err(e) = conn.send(&Response::Failed(e)) {
529
+ error!("Failed to send response to enclave: {:?}", e);
530
+ }
531
}
532
});
533
0 commit comments