huskies: merge 590_story_gateway_native_mcp_tools_return_json_rpc_responses_missing_request_id

This commit is contained in:
dave
2026-04-16 11:37:30 +00:00
parent 4ddf2a4367
commit e734e80da5
2 changed files with 29 additions and 20 deletions
+4 -1
View File
@@ -44,7 +44,10 @@ fn strip_front_matter(text: &str) -> (String, String) {
parts.push("**QA:** human review required".to_string());
}
} else if line.starts_with("merge_failure:") {
let val = line.trim_start_matches("merge_failure:").trim().trim_matches('"');
let val = line
.trim_start_matches("merge_failure:")
.trim()
.trim_matches('"');
if !val.is_empty() {
parts.push(format!("**Merge failure:** {val}"));
}