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 c3b446d commit f1827ceCopy full SHA for f1827ce
src/client/streamableHttp.ts
@@ -121,7 +121,7 @@ export class StreamableHTTPClientTransport implements Transport {
121
signal: this._abortController?.signal,
122
});
123
124
- if (response.status === 405) {
+ if (response.status === 405 || response.status === 404) {
125
// Server doesn't support GET for SSE, which is allowed by the spec
126
// We'll rely on SSE responses to POST requests for communication
127
return;
0 commit comments