From 64d7ea00a5bf37f4e7b5de40f4c63dae6c1ed47f Mon Sep 17 00:00:00 2001 From: mmalden Date: Tue, 3 Mar 2026 07:18:27 -0700 Subject: [PATCH] Updating-delaySeconds --- src/content/docs/queues/configuration/batching-retries.mdx | 2 +- src/content/docs/queues/configuration/configure-queues.mdx | 2 +- src/content/docs/queues/configuration/javascript-apis.mdx | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/content/docs/queues/configuration/batching-retries.mdx b/src/content/docs/queues/configuration/batching-retries.mdx index ed67f8b623b..6bdda155487 100644 --- a/src/content/docs/queues/configuration/batching-retries.mdx +++ b/src/content/docs/queues/configuration/batching-retries.mdx @@ -152,7 +152,7 @@ When publishing messages to a queue, or when [marking a message or batch for ret Delaying messages allows you to defer tasks until later, and/or respond to backpressure when consuming from a queue. For example, if an upstream API you are calling to returns a `HTTP 429: Too Many Requests`, you can delay messages to slow down how quickly you are consuming them before they are re-processed. -Messages can be delayed by up to 12 hours. +Messages can be delayed by up to 24 hours. :::note diff --git a/src/content/docs/queues/configuration/configure-queues.mdx b/src/content/docs/queues/configuration/configure-queues.mdx index 6d6f197dd29..9f138e3f146 100644 --- a/src/content/docs/queues/configuration/configure-queues.mdx +++ b/src/content/docs/queues/configuration/configure-queues.mdx @@ -35,7 +35,7 @@ npx wrangler queues update --delivery-delay-secs 60 --message-reten * `--delivery-delay-secs` * How long a published message is delayed for, before it is delivered to consumers. - * Must be between 0 and 43200 (12 hours). + * Must be between 0 and 86400 (24 hours). * Defaults to 0. * `--message-retention-period-secs` diff --git a/src/content/docs/queues/configuration/javascript-apis.mdx b/src/content/docs/queues/configuration/javascript-apis.mdx index 030c420e39f..15446ad58f0 100644 --- a/src/content/docs/queues/configuration/javascript-apis.mdx +++ b/src/content/docs/queues/configuration/javascript-apis.mdx @@ -139,7 +139,7 @@ interface MessageSendRequest { * delaySeconds * The number of seconds to [delay a message](/queues/configuration/batching-retries/) for within the queue, before it can be delivered to a consumer. - * Must be an integer between 0 and 43200 (12 hours). + * Must be an integer between 0 and 86400 (24 hours). @@ -156,7 +156,7 @@ Optional configuration that applies when sending a message to a queue. * delaySeconds * The number of seconds to [delay a message](/queues/configuration/batching-retries/) for within the queue, before it can be delivered to a consumer. - * Must be an integer between 0 and 43200 (12 hours). Setting this value to zero will explicitly prevent the message from being delayed, even if there is a global (default) delay at the queue level. + * Must be an integer between 0 and 86400 (24 hours). Setting this value to zero will explicitly prevent the message from being delayed, even if there is a global (default) delay at the queue level. ### `QueueSendBatchOptions`