mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Merge pull request #40769 from abhaynikam/fixes-configuration-guide-typo
Fixes the copy-paste typo in configuration guide for default job queue changes
This commit is contained in:
commit
8ad56d9858
1 changed files with 3 additions and 3 deletions
|
@ -727,9 +727,9 @@ Defaults to `'signed cookie'`.
|
|||
config.action_mailbox.incinerate_after = 14.days
|
||||
```
|
||||
|
||||
* `config.action_mailbox.queues.incineration` accepts a symbol indicating the Active Job queue to use for incineration jobs. When this option is `nil`, purge jobs are sent to the default Active Job queue (see `config.active_job.default_queue_name`). It defaults to `:action_mailbox_incineration`.
|
||||
* `config.action_mailbox.queues.incineration` accepts a symbol indicating the Active Job queue to use for incineration jobs. When this option is `nil`, incineration jobs are sent to the default Active Job queue (see `config.active_job.default_queue_name`). It defaults to `:action_mailbox_incineration`.
|
||||
|
||||
* `config.action_mailbox.queues.routing` accepts a symbol indicating the Active Job queue to use for routing jobs. When this option is `nil`, purge jobs are sent to the default Active Job queue (see `config.active_job.default_queue_name`). It defaults to `:action_mailbox_routing`.
|
||||
* `config.action_mailbox.queues.routing` accepts a symbol indicating the Active Job queue to use for routing jobs. When this option is `nil`, routing jobs are sent to the default Active Job queue (see `config.active_job.default_queue_name`). It defaults to `:action_mailbox_routing`.
|
||||
|
||||
|
||||
### Configuring Action Mailer
|
||||
|
@ -970,7 +970,7 @@ text/javascript image/svg+xml application/postscript application/x-shockwave-fla
|
|||
config.active_storage.queues.purge = :low_priority
|
||||
```
|
||||
|
||||
* `config.active_storage.queues.mirror` accepts a symbol indicating the Active Job queue to use for direct upload mirroring jobs. When this option is `nil`, purge jobs are sent to the default Active Job queue (see `config.active_job.default_queue_name`). The default is `nil`.
|
||||
* `config.active_storage.queues.mirror` accepts a symbol indicating the Active Job queue to use for direct upload mirroring jobs. When this option is `nil`, mirroring jobs are sent to the default Active Job queue (see `config.active_job.default_queue_name`). The default is `nil`.
|
||||
|
||||
```ruby
|
||||
config.active_storage.queues.mirror = :low_priority
|
||||
|
|
Loading…
Reference in a new issue