From 2218292236a27e9b41c1626456d03051eb2aee6a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Lavoie?= Date: Fri, 30 May 2025 06:44:10 -0400 Subject: [PATCH 1/3] [Workers for Platforms] Fix pricing formula for scripts in pricing.mdx MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Fixes order of operations. Without parentheses surrounding the subtraction, the result is `1,200 − 1,000 * 0.02 = 1,180` instead of `(1,200 − 1,000) * 0.02 = 4` --- .../workers-for-platforms/platform/pricing.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/cloudflare-for-platforms/workers-for-platforms/platform/pricing.mdx b/src/content/docs/cloudflare-for-platforms/workers-for-platforms/platform/pricing.mdx index fb452274e5d2ed2..b15310e6c21066e 100644 --- a/src/content/docs/cloudflare-for-platforms/workers-for-platforms/platform/pricing.mdx +++ b/src/content/docs/cloudflare-for-platforms/workers-for-platforms/platform/pricing.mdx @@ -27,7 +27,7 @@ A Workers for Platforms project that serves 100 million requests per month, uses | **Subscription** | $25.00 | | | **Requests** | $24.00 | (100,000,000 requests - 20,000,000 included requests) / 1,000,000 \* $0.30 | | **CPU time** | $18.80 | ((10 ms of CPU time per request \* 100,000,000 requests) - 60,000,000 included CPU ms) / 1,000,000 \* $0.02 | -| **Scripts** | $4.00 | 1200 scripts - 1000 included scripts \* $0.02 | +| **Scripts** | $4.00 | (1200 scripts - 1000 included scripts) \* $0.02 | | **Total** | $71.80 | | :::note[Custom limits] From 1b9d0935643d56fffd26e051b436c7938e50c451 Mon Sep 17 00:00:00 2001 From: Kody Jackson Date: Mon, 11 Aug 2025 15:48:51 -0500 Subject: [PATCH 2/3] Retrigger CI --- .../workers-for-platforms/platform/pricing.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/cloudflare-for-platforms/workers-for-platforms/platform/pricing.mdx b/src/content/docs/cloudflare-for-platforms/workers-for-platforms/platform/pricing.mdx index b15310e6c21066e..2aea671e6c792a2 100644 --- a/src/content/docs/cloudflare-for-platforms/workers-for-platforms/platform/pricing.mdx +++ b/src/content/docs/cloudflare-for-platforms/workers-for-platforms/platform/pricing.mdx @@ -27,7 +27,7 @@ A Workers for Platforms project that serves 100 million requests per month, uses | **Subscription** | $25.00 | | | **Requests** | $24.00 | (100,000,000 requests - 20,000,000 included requests) / 1,000,000 \* $0.30 | | **CPU time** | $18.80 | ((10 ms of CPU time per request \* 100,000,000 requests) - 60,000,000 included CPU ms) / 1,000,000 \* $0.02 | -| **Scripts** | $4.00 | (1200 scripts - 1000 included scripts) \* $0.02 | +| **Scripts** | $4.00 | (1200 scripts - 1000 included scripts) \* $0.02 | | **Total** | $71.80 | | :::note[Custom limits] From 7b8b2b86aa56152d240f87a39c81e7de4511d89a Mon Sep 17 00:00:00 2001 From: Kody Jackson Date: Mon, 11 Aug 2025 15:49:05 -0500 Subject: [PATCH 3/3] Retrigger CI --- .../workers-for-platforms/platform/pricing.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/cloudflare-for-platforms/workers-for-platforms/platform/pricing.mdx b/src/content/docs/cloudflare-for-platforms/workers-for-platforms/platform/pricing.mdx index 2aea671e6c792a2..b15310e6c21066e 100644 --- a/src/content/docs/cloudflare-for-platforms/workers-for-platforms/platform/pricing.mdx +++ b/src/content/docs/cloudflare-for-platforms/workers-for-platforms/platform/pricing.mdx @@ -27,7 +27,7 @@ A Workers for Platforms project that serves 100 million requests per month, uses | **Subscription** | $25.00 | | | **Requests** | $24.00 | (100,000,000 requests - 20,000,000 included requests) / 1,000,000 \* $0.30 | | **CPU time** | $18.80 | ((10 ms of CPU time per request \* 100,000,000 requests) - 60,000,000 included CPU ms) / 1,000,000 \* $0.02 | -| **Scripts** | $4.00 | (1200 scripts - 1000 included scripts) \* $0.02 | +| **Scripts** | $4.00 | (1200 scripts - 1000 included scripts) \* $0.02 | | **Total** | $71.80 | | :::note[Custom limits]