diff options
author | Matthew Draper <matthew@trebex.net> | 2015-10-10 02:42:11 +1030 |
---|---|---|
committer | Matthew Draper <matthew@trebex.net> | 2015-10-10 02:42:11 +1030 |
commit | 30bacc26f8f258b39e12f63fe52389a968d9c1ea (patch) | |
tree | 9da556a8ecf6022b429cecd2c2f3750340fde8f6 /activejob/lib | |
parent | 64476e9194388f774a4dd2fa790e69bbd6b6a128 (diff) | |
parent | b0a3a688892b035823e28047f176080027cdbb3f (diff) | |
download | rails-30bacc26f8f258b39e12f63fe52389a968d9c1ea.tar.gz rails-30bacc26f8f258b39e12f63fe52389a968d9c1ea.tar.bz2 rails-30bacc26f8f258b39e12f63fe52389a968d9c1ea.zip |
Merge pull request #21878 from Gaurav2728/require_monitor
monitor is require for SneakersAdapter
Diffstat (limited to 'activejob/lib')
-rw-r--r-- | activejob/lib/active_job/queue_adapters/sneakers_adapter.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activejob/lib/active_job/queue_adapters/sneakers_adapter.rb b/activejob/lib/active_job/queue_adapters/sneakers_adapter.rb index f102c6567e..d78bdecdcb 100644 --- a/activejob/lib/active_job/queue_adapters/sneakers_adapter.rb +++ b/activejob/lib/active_job/queue_adapters/sneakers_adapter.rb @@ -1,5 +1,5 @@ require 'sneakers' -require 'thread' +require 'monitor' module ActiveJob module QueueAdapters |