-
Notifications
You must be signed in to change notification settings - Fork 969
feat: send HTTP/2 PING keepalives on the Bedrock provider #5213
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: dev
Are you sure you want to change the base?
Changes from all commits
22a6805
2e3e40d
bf89299
dee7dd3
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| - feat: opt-in HTTP/2 PING keepalives on the Bedrock provider via a configurable interval (0 = off) [@jeremym-tanium](https://github.com/jeremym-tanium) |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -43,6 +43,7 @@ const NetworkConfigSchema = z | |
| keep_alive_timeout_in_seconds: z.number().int().min(1).max(3600).optional(), | ||
| max_conns_per_host: z.number().int().min(1).max(10000).optional(), | ||
| enforce_http2: z.boolean().optional(), | ||
| http2_ping_interval_in_seconds: z.number().int().min(0).optional(), | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🗄️ Data Integrity & Integration | 🟠 Major | ⚡ Quick win Keep the provider-form bound consistent with the shared network schema. This accepts any non-negative integer, while 🤖 Prompt for AI Agents |
||
| }) | ||
| .refine((v) => v.retry_backoff_initial <= v.retry_backoff_max, { | ||
| message: "Initial backoff must be <= max backoff", | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.