(status: StatusCode)
| 144 | } |
| 145 | |
| 146 | fn empty_response(status: StatusCode) -> Result<Response<String>> { |
| 147 | Response::builder() |
| 148 | .status(status) |
| 149 | .body(String::new()) |
| 150 | .context("Failed to build response") |
| 151 | } |
| 152 | |
| 153 | impl Proxy { |
| 154 | pub(crate) async fn handle_this_node( |
no test coverage detected