From 7e36841981d4f8dac1f24642a7bdffdf952cf027 Mon Sep 17 00:00:00 2001 From: Tamir Duberstein Date: Tue, 23 Sep 2014 20:43:12 -0700 Subject: Use a more conservative `const_get` over `constantize` --- activejob/lib/active_job/queue_adapter.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'activejob/lib') diff --git a/activejob/lib/active_job/queue_adapter.rb b/activejob/lib/active_job/queue_adapter.rb index f3a3d27193..e1f104dc60 100644 --- a/activejob/lib/active_job/queue_adapter.rb +++ b/activejob/lib/active_job/queue_adapter.rb @@ -58,7 +58,7 @@ module ActiveJob end def load_adapter(name) - "ActiveJob::QueueAdapters::#{name.to_s.camelize}Adapter".constantize.new + ActiveJob::QueueAdapters.const_get(name.to_s.camelize + 'Adapter').new end end end -- cgit v1.2.3