What do you want to change?
Add http2 request did not get a response to retriable errors.
Why?
I've been lately running into a bunch of errors like http2 request did not get a response when working with AWS Bedrock. They look like this in the terminal and I have to manually nudge the agent to continue working:
I thought it would be nice to handle them automatically.
How? (optional)
Like this:
diff --git a/packages/coding-agent/src/core/agent-session.ts b/packages/coding-agent/src/core/agent-session.ts
index 550b485882..b1ebc299e3 100644
--- a/packages/coding-agent/src/core/agent-session.ts
+++ b/packages/coding-agent/src/core/agent-session.ts
@@ -2414,8 +2414,8 @@ export class AgentSession {
if (isContextOverflow(message, contextWindow)) return false;
const err = message.errorMessage;
- // Match: overloaded_error, provider returned error, rate limit, 429, 500, 502, 503, 504, service unavailable, network/connection errors (including connection lost), fetch failed, request ended without sending chunks, terminated, retry delay exceeded
- return /overloaded|provider.?returned.?error|rate.?limit|too many requests|429|500|502|503|504|service.?unavailable|server.?error|internal.?error|network.?error|connection.?error|connection.?refused|connection.?lost|other side closed|fetch failed|upstream.?connect|reset before headers|socket hang up|ended without|timed? out|timeout|terminated|retry delay/i.test(
+ // Match: overloaded_error, provider returned error, rate limit, 429, 500, 502, 503, 504, service unavailable, network/connection errors (including connection lost), fetch failed, request ended without sending chunks, terminated, retry delay exceeded, http2 stream closed with no response
+ return /overloaded|provider.?returned.?error|rate.?limit|too many requests|429|500|502|503|504|service.?unavailable|server.?error|internal.?error|network.?error|connection.?error|connection.?refused|connection.?lost|other side closed|fetch failed|upstream.?connect|reset before headers|socket hang up|ended without|timed? out|timeout|terminated|retry delay|http2 request did not get a response/i.test(
err,
);
}
What do you want to change?
Add
http2 request did not get a responseto retriable errors.Why?
I've been lately running into a bunch of errors like http2 request did not get a response when working with AWS Bedrock. They look like this in the terminal and I have to manually nudge the agent to continue working:
I thought it would be nice to handle them automatically.
How? (optional)
Like this: