From 7c83d2d4a9240468652a622de090bf96fc59d8e9 Mon Sep 17 00:00:00 2001 From: DIYgod Date: Sat, 14 Mar 2026 13:25:18 +0800 Subject: [PATCH] chore: increase container instance limit to 60 --- src/index.ts | 2 +- wrangler.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/index.ts b/src/index.ts index ac962da..45af89b 100644 --- a/src/index.ts +++ b/src/index.ts @@ -4,7 +4,7 @@ import { Container } from '@cloudflare/containers'; import type { KVNamespace } from '@cloudflare/workers-types'; -const INSTANCE_COUNT = 40; +const INSTANCE_COUNT = 60; export class RSSHubContainer extends Container { defaultPort = 1200; diff --git a/wrangler.toml b/wrangler.toml index f9c387e..2b44a2d 100644 --- a/wrangler.toml +++ b/wrangler.toml @@ -14,7 +14,7 @@ enabled = true [[containers]] class_name = "RSSHubContainer" image = "registry.cloudflare.com/CLOUDFLARE_ACCOUNT_ID/rsshub:chromium-bundled-df6572b659bf25cabc6a71108b8cd9b70056262c" -max_instances = 40 +max_instances = 60 instance_type = "standard-1" # Durable Object binding for the container