feat(extensions): support Unix domain socket transport for StreamableHttp MCP (#7860)

This commit is contained in:
Will Pfleger
2026-04-17 15:16:37 -04:00
committed by GitHub
parent 1a18c2748c
commit 7fa662bcac
16 changed files with 212 additions and 29 deletions
@@ -1149,6 +1149,7 @@ mod tests {
env_keys: vec![],
headers: HashMap::from([("Authorization".into(), "Bearer token".into())]),
timeout: None,
socket: None,
bundled: Some(false),
available_tools: vec![],
}],
@@ -1170,6 +1171,7 @@ mod tests {
env_keys: vec![],
headers: HashMap::new(),
timeout: None,
socket: None,
bundled: None,
available_tools: vec![],
}],
+2
View File
@@ -792,6 +792,7 @@ mod tests {
env_keys: vec![],
headers: HashMap::from([("Authorization".into(), "Bearer token".into())]),
timeout: None,
socket: None,
bundled: Some(false),
available_tools: vec![],
},
@@ -810,6 +811,7 @@ mod tests {
env_keys: vec![],
headers: HashMap::new(),
timeout: None,
socket: None,
bundled: None,
available_tools: vec![],
},