Skip to content

Commit

Permalink
Dont panic WSGI thread if timed out
Browse files Browse the repository at this point in the history
  • Loading branch information
levkk committed Oct 26, 2024
1 parent f281272 commit bd4ee98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rwf/src/controller/wsgi.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ impl Controller for WsgiController {
})
.unwrap();

tx.send(response).unwrap();
let _ = tx.send(response);
});

// TODO: spawn blocking tasks cannot be aborted.
Expand Down

0 comments on commit bd4ee98

Please sign in to comment.