aboutsummaryrefslogtreecommitdiffstats
path: root/railties/CHANGELOG.md
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2012-10-12 20:45:54 -0700
committerJeremy Kemper <jeremy@bitsweat.net>2012-10-12 22:27:41 -0700
commitc8fe0d58bcc7deb49711606566c854bf0ed7f107 (patch)
tree49f8c2b9780f58117282eff2d86e0b08cd9065bf /railties/CHANGELOG.md
parent1dc2ea8f3dfc1cce1958bd661c641ed345adf910 (diff)
downloadrails-c8fe0d58bcc7deb49711606566c854bf0ed7f107.tar.gz
rails-c8fe0d58bcc7deb49711606566c854bf0ed7f107.tar.bz2
rails-c8fe0d58bcc7deb49711606566c854bf0ed7f107.zip
Backpedal from class-oriented config.queue. Set an actual queue instance.
Diffstat (limited to 'railties/CHANGELOG.md')
-rw-r--r--railties/CHANGELOG.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/CHANGELOG.md b/railties/CHANGELOG.md
index 2ecdfdcb22..ba9b24c6c6 100644
--- a/railties/CHANGELOG.md
+++ b/railties/CHANGELOG.md
@@ -81,9 +81,9 @@
* Load all environments available in `config.paths["config/environments"]`. *Piotr Sarnacki*
-* Add `config.queue_consumer` to allow the default consumer to be configurable. *Carlos Antonio da Silva*
+* Add `config.queue_consumer` to change the job queue consumer from the default `ActiveSupport::ThreadedQueueConsumer`. *Carlos Antonio da Silva*
-* Add Rails.queue as an interface with a default implementation that consumes jobs in a separate thread. *Yehuda Katz*
+* Add `Rails.queue` for processing jobs in the background. *Yehuda Katz*
* Remove Rack::SSL in favour of ActionDispatch::SSL. *Rafael Mendonça França*