aboutsummaryrefslogtreecommitdiffstats
path: root/activestorage/lib
diff options
context:
space:
mode:
authorJoel Taylor <joel@glassbreakers.co>2018-08-06 18:17:49 -0700
committerJoel Taylor <joel@glassbreakers.co>2018-08-06 18:17:49 -0700
commit3082786be616173f28488e89b7d8b9bfc5cd0f97 (patch)
tree955033c82128a98024294e002dc90f4d11491728 /activestorage/lib
parent53ec6cdf7ade942b2589bf8295246f7bc98c850a (diff)
downloadrails-3082786be616173f28488e89b7d8b9bfc5cd0f97.tar.gz
rails-3082786be616173f28488e89b7d8b9bfc5cd0f97.tar.bz2
rails-3082786be616173f28488e89b7d8b9bfc5cd0f97.zip
Improve ActiveStorage service adapter error handling
Diffstat (limited to 'activestorage/lib')
-rw-r--r--activestorage/lib/active_storage/service/configurator.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/activestorage/lib/active_storage/service/configurator.rb b/activestorage/lib/active_storage/service/configurator.rb
index 39951fd026..32fa9105c6 100644
--- a/activestorage/lib/active_storage/service/configurator.rb
+++ b/activestorage/lib/active_storage/service/configurator.rb
@@ -26,7 +26,9 @@ module ActiveStorage
def resolve(class_name)
require "active_storage/service/#{class_name.to_s.underscore}_service"
- ActiveStorage::Service.const_get(:"#{class_name}Service")
+ ActiveStorage::Service.const_get(:"#{class_name.classify}Service")
+ rescue LoadError
+ raise "Missing service adapter for #{class_name.inspect}"
end
end
end