aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/relation
diff options
context:
space:
mode:
authorRafael França <rafaelmfranca@gmail.com>2017-08-11 16:09:15 -0400
committerGitHub <noreply@github.com>2017-08-11 16:09:15 -0400
commitaa1b03913319e4bb4f4b57d368fa4a0f9915aebd (patch)
treee8bec0be9b8dc5f305b757ae1278219b26c10cbc /activerecord/lib/active_record/relation
parent043f83fed3ff454a4b3735b3388541b9583bb4c4 (diff)
parent702e36e2f303aa5864209d43c25f1b9008ae976e (diff)
downloadrails-aa1b03913319e4bb4f4b57d368fa4a0f9915aebd.tar.gz
rails-aa1b03913319e4bb4f4b57d368fa4a0f9915aebd.tar.bz2
rails-aa1b03913319e4bb4f4b57d368fa4a0f9915aebd.zip
Merge pull request #29720 from gaurish/ar_find_error_message_improvement
Return Not found Ids in ActiveRecord::NotFound
Diffstat (limited to 'activerecord/lib/active_record/relation')
-rw-r--r--activerecord/lib/active_record/relation/finder_methods.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/activerecord/lib/active_record/relation/finder_methods.rb b/activerecord/lib/active_record/relation/finder_methods.rb
index 626c50470e..5da9573052 100644
--- a/activerecord/lib/active_record/relation/finder_methods.rb
+++ b/activerecord/lib/active_record/relation/finder_methods.rb
@@ -330,7 +330,7 @@ module ActiveRecord
# of results obtained should be provided in the +result_size+ argument and
# the expected number of results should be provided in the +expected_size+
# argument.
- def raise_record_not_found_exception!(ids = nil, result_size = nil, expected_size = nil, key = primary_key) # :nodoc:
+ def raise_record_not_found_exception!(ids = nil, result_size = nil, expected_size = nil, key = primary_key, not_found_ids = nil) # :nodoc:
conditions = arel.where_sql(@klass)
conditions = " [#{conditions}]" if conditions
name = @klass.name
@@ -344,8 +344,8 @@ module ActiveRecord
raise RecordNotFound.new(error, name, key, ids)
else
error = "Couldn't find all #{name.pluralize} with '#{key}': ".dup
- error << "(#{ids.join(", ")})#{conditions} (found #{result_size} results, but was looking for #{expected_size})"
-
+ error << "(#{ids.join(", ")})#{conditions} (found #{result_size} results, but was looking for #{expected_size})."
+ error << " Couldn't find #{name.pluralize(not_found_ids.size)} with #{key.to_s.pluralize(not_found_ids.size)} #{not_found_ids.join(', ')}." if not_found_ids
raise RecordNotFound.new(error, name, primary_key, ids)
end
end