Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 23 additions & 2 deletions content/workers/wrangler/commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -1707,7 +1707,7 @@ wrangler r2 object delete <OBJECT_PATH> [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.

Expand Down Expand Up @@ -2187,7 +2187,28 @@ wrangler queues create <name> [OPTIONS]
- `name` {{<type>}}string{{</type>}} {{<prop-meta>}}required{{</prop-meta>}}
- The name of the queue to create.
- `--delivery-delay-secs` {{<type>}}number{{</type>}} {{<prop-meta>}}optional{{</prop-meta>}}
- 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` {{<type>}}number{{</type>}} {{<prop-meta>}}optional{{</prop-meta>}}
- How long to retain a message, in seconds. Must be between 60 and 1209600.

{{</definitions>}}

### `update`

Update an existing Queue.

```txt
wrangler queues update <name> [OPTIONS]
```

{{<definitions>}}

- `name` {{<type>}}string{{</type>}} {{<prop-meta>}}required{{</prop-meta>}}
- The name of the queue to update.
- `--delivery-delay-secs` {{<type>}}number{{</type>}} {{<prop-meta>}}optional{{</prop-meta>}}
- How long a published message should be delayed for, in seconds. Must be between 0 and 42300.
- `--message-retention-period-secs` {{<type>}}number{{</type>}} {{<prop-meta>}}optional{{</prop-meta>}}
- How long to retain a message, in seconds. Must be between 60 and 1209600.

{{</definitions>}}

Expand Down