fix(http): fix aborting a streaming response (#2562)

This commit is contained in:
Amr Bashir
2025-11-24 13:55:11 +01:00
committed by GitHub
parent 6de61f854b
commit e8915f17e4
10 changed files with 150 additions and 55 deletions
+7 -1
View File
@@ -6,7 +6,13 @@
#[allow(dead_code)]
mod scope;
const COMMANDS: &[&str] = &["fetch", "fetch_cancel", "fetch_send", "fetch_read_body"];
const COMMANDS: &[&str] = &[
"fetch",
"fetch_cancel",
"fetch_send",
"fetch_read_body",
"fetch_cancel_body",
];
/// HTTP scope entry.
#[derive(schemars::JsonSchema)]