aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib
diff options
context:
space:
mode:
authorJohn Hawthorn <john@hawthorn.email>2019-04-14 18:22:43 -0700
committerJohn Hawthorn <john@hawthorn.email>2019-04-15 16:13:06 -0700
commit0bab6310d623f9f8ed382c93ddeb9f4d1a0b8f75 (patch)
tree7ec9d96b3c4bcfcc903030b9909b506d80d6f7cc /activesupport/lib
parent60afbfffdcdb4510deccf8d6db303dd4260e3dc7 (diff)
downloadrails-0bab6310d623f9f8ed382c93ddeb9f4d1a0b8f75.tar.gz
rails-0bab6310d623f9f8ed382c93ddeb9f4d1a0b8f75.tar.bz2
rails-0bab6310d623f9f8ed382c93ddeb9f4d1a0b8f75.zip
Find query_source_location using lazy Enumerator
This way, we only need to filter the backtrace up to the first non-noise stack frame. This also updates noise to be able to deal with being passed a lazy enum. We don't need this anywhere, but it seemed better for this to be consistent.
Diffstat (limited to 'activesupport/lib')
-rw-r--r--activesupport/lib/active_support/backtrace_cleaner.rb6
1 files changed, 5 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/backtrace_cleaner.rb b/activesupport/lib/active_support/backtrace_cleaner.rb
index 62973eca58..02cbfbaee6 100644
--- a/activesupport/lib/active_support/backtrace_cleaner.rb
+++ b/activesupport/lib/active_support/backtrace_cleaner.rb
@@ -122,7 +122,11 @@ module ActiveSupport
end
def noise(backtrace)
- backtrace - silence(backtrace)
+ backtrace.select do |line|
+ @silencers.any? do |s|
+ s.call(line)
+ end
+ end
end
end
end