aboutsummaryrefslogtreecommitdiffstats
path: root/railties/CHANGELOG.md
diff options
context:
space:
mode:
authorGeorge Claghorn <george.claghorn@gmail.com>2019-01-04 12:43:51 -0500
committerGitHub <noreply@github.com>2019-01-04 12:43:51 -0500
commit663f6cc14fd01650546ed508efb3f7ad8e30135c (patch)
treeef6fd7196d42934dbb4e1c9768bbd2933fef3071 /railties/CHANGELOG.md
parenta86b64918b5c42ffbef2e98a2955be3fe27468de (diff)
downloadrails-663f6cc14fd01650546ed508efb3f7ad8e30135c.tar.gz
rails-663f6cc14fd01650546ed508efb3f7ad8e30135c.tar.bz2
rails-663f6cc14fd01650546ed508efb3f7ad8e30135c.zip
Send Active Storage jobs to dedicated queues by default
Match Action Mailbox, which sets a default queue for each of its two jobs.
Diffstat (limited to 'railties/CHANGELOG.md')
-rw-r--r--railties/CHANGELOG.md8
1 files changed, 8 insertions, 0 deletions
diff --git a/railties/CHANGELOG.md b/railties/CHANGELOG.md
index edfd5e2cd1..9897f6e011 100644
--- a/railties/CHANGELOG.md
+++ b/railties/CHANGELOG.md
@@ -1,3 +1,11 @@
+* Send Active Storage analysis and purge jobs to dedicated queues by default.
+
+ Analysis jobs now use the `:active_storage_analysis` queue, and purge jobs
+ now use the `:active_storage_purge` queue. This matches Action Mailbox,
+ which sends its jobs to dedicated queues by default.
+
+ *George Claghorn*
+
* Add `rails test:mailboxes`.
*George Claghorn*