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 0d1ed28 commit 31ee50dCopy full SHA for 31ee50d
stackslib/src/net/httpcore.rs
@@ -1356,16 +1356,6 @@ impl StacksHttp {
1356
&ConnectionOptions::default(),
1357
);
1358
1359
- if !self.allow_arbitrary_response {
1360
- let response_handler_index =
1361
- http.find_response_handler(verb, request_path)
1362
- .ok_or(NetError::SendError(format!(
1363
- "No such handler for '{} {}'",
1364
- verb, request_path
1365
- )))?;
1366
- http.request_handler_index = Some(response_handler_index);
1367
- }
1368
-
1369
let (preamble, message_offset) = http.read_preamble(response_buf)?;
1370
let is_chunked = match preamble {
1371
StacksHttpPreamble::Response(ref resp) => resp.is_chunked(),
0 commit comments