diff --git a/content/workers/wrangler/commands.md b/content/workers/wrangler/commands.md index 685c4e04dbfe18f..935aa9a79dd8bd4 100644 --- a/content/workers/wrangler/commands.md +++ b/content/workers/wrangler/commands.md @@ -1707,7 +1707,7 @@ wrangler r2 object delete [OPTIONS] ## `secret` -Manage the secret variables for a Worker. +Manage the secret variables for a Worker. This action creates a new [version](/workers/configuration/versions-and-deployments/#versions) of the Worker and [deploys](/workers/configuration/versions-and-deployments/#deployments) it immediately. To only create a new version of the Worker, use the [`wrangler versions secret`](/workers/wrangler/commands/#secret-put) commands. @@ -2187,7 +2187,28 @@ wrangler queues create [OPTIONS] - `name` {{}}string{{}} {{}}required{{}} - The name of the queue to create. - `--delivery-delay-secs` {{}}number{{}} {{}}optional{{}} - - How long a published message should be delayed for, in seconds. Must be a positive integer. + - How long a published message should be delayed for, in seconds. Must be between 0 and 42300. +- `--message-retention-period-secs` {{}}number{{}} {{}}optional{{}} + - How long to retain a message, in seconds. Must be between 60 and 1209600. + +{{}} + +### `update` + +Update an existing Queue. + +```txt +wrangler queues update [OPTIONS] +``` + +{{}} + +- `name` {{}}string{{}} {{}}required{{}} + - The name of the queue to update. +- `--delivery-delay-secs` {{}}number{{}} {{}}optional{{}} + - How long a published message should be delayed for, in seconds. Must be between 0 and 42300. +- `--message-retention-period-secs` {{}}number{{}} {{}}optional{{}} + - How long to retain a message, in seconds. Must be between 60 and 1209600. {{}}