diff --git a/src/content/docs/queues/configuration/configure-queues.mdx b/src/content/docs/queues/configuration/configure-queues.mdx index cfdb59af582b3b9..44f8cb0a391377d 100644 --- a/src/content/docs/queues/configuration/configure-queues.mdx +++ b/src/content/docs/queues/configuration/configure-queues.mdx @@ -30,7 +30,7 @@ Below are options for queues, refer to the Wrangler documentation for a full ref The following queue level settings can be configured using Wrangler: ```sh -$ npx run wrangler queues update --delivery-delay-secs 60 --message-retention-period-secs 3000 +$ npx wrangler queues update --delivery-delay-secs 60 --message-retention-period-secs 3000 ``` * `--delivery-delay-secs` diff --git a/src/content/docs/queues/configuration/pause-purge.mdx b/src/content/docs/queues/configuration/pause-purge.mdx index 42f5a25bc181e6b..3908612568f7857 100644 --- a/src/content/docs/queues/configuration/pause-purge.mdx +++ b/src/content/docs/queues/configuration/pause-purge.mdx @@ -19,7 +19,7 @@ Pausing affects both [push-based consumer Workers](/queues/reference/how-queues- The following command will pause message delivery from your queue: ```sh -$ npx run wrangler queues pause-delivery +$ npx wrangler queues pause-delivery ``` - `queue-name` @@ -28,7 +28,7 @@ $ npx run wrangler queues pause-delivery The following command will resume message delivery: ```sh -$ npx run wrangler queues resume-delivery +$ npx wrangler queues resume-delivery ``` - `queue-name` @@ -49,7 +49,7 @@ Purging a queue is an irreversible operation. Make sure to use this operation ca ### Purge queue using Wrangler The following command will purge messages from your queue. You will be prompted to enter the queue name to confirm the operation. ```sh -$ npx run wrangler queues purge +$ npx wrangler queues purge This operation will permanently delete all the messages in Queue . Type to proceed. ```