diff options
author | Eileen M. Uchitelle <eileencodes@users.noreply.github.com> | 2017-01-18 08:17:48 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-18 08:17:48 -0500 |
commit | 783cbc1ff4d06af0e7432dd53769e27ffd174c09 (patch) | |
tree | 107a998f1383368128bb9761a3f3d87a5c09c726 | |
parent | 1853a4f2c8b2bddfbde6aae80abb08310295201c (diff) | |
parent | 4327444cfdbfc8ce93ca0efa50ac6cf00940fbaa (diff) | |
download | rails-783cbc1ff4d06af0e7432dd53769e27ffd174c09.tar.gz rails-783cbc1ff4d06af0e7432dd53769e27ffd174c09.tar.bz2 rails-783cbc1ff4d06af0e7432dd53769e27ffd174c09.zip |
Merge pull request #27727 from kenta-s/remove-todos-related-to-exceptron
Remove TODOs related to Exceptron [ci skip]
-rw-r--r-- | actionview/lib/action_view/renderer/streaming_template_renderer.rb | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/actionview/lib/action_view/renderer/streaming_template_renderer.rb b/actionview/lib/action_view/renderer/streaming_template_renderer.rb index 7ede034492..62ce985243 100644 --- a/actionview/lib/action_view/renderer/streaming_template_renderer.rb +++ b/actionview/lib/action_view/renderer/streaming_template_renderer.rb @@ -4,7 +4,6 @@ module ActionView # == TODO # # * Support streaming from child templates, partials and so on. - # * Integrate exceptions with exceptron # * Rack::Cache needs to support streaming bodies class StreamingTemplateRenderer < TemplateRenderer #:nodoc: # A valid Rack::Body (i.e. it responds to each). @@ -28,7 +27,6 @@ module ActionView private # This is the same logging logic as in ShowExceptions middleware. - # TODO Once "exceptron" is in, refactor this piece to simply re-use exceptron. def log_error(exception) logger = ActionView::Base.logger return unless logger |