Skip to content

Commit

Permalink
Merge pull request #767 from yaacov/sanitize-hawkular-html-errors-in-…
Browse files Browse the repository at this point in the history
…ad-hoc-page

Sanitize hawkular error messages in ad-hoc page
  • Loading branch information
h-kataria authored Mar 22, 2017
2 parents 49b560e + 59e58f3 commit 3ace41f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/services/hawkular_proxy_service.rb
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def data(query)
rescue StandardError => e
{
:parameters => params,
:error => e
:error => ActionView::Base.full_sanitizer.sanitize(e.message)
}
end

Expand Down

0 comments on commit 3ace41f

Please sign in to comment.