Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorSean McGivern <sean@gitlab.com>2019-04-29 10:38:49 +0300
committerSean McGivern <sean@gitlab.com>2019-04-29 10:38:49 +0300
commite6f548fcd87a9e724c80980098c9137081b96be4 (patch)
treeb4b0a4052af15abb119e55ffa485c8e0e3d68752 /lib
parent4047e5b8275490288e7ce38ae48e3f7248e5daf8 (diff)
parent266ba11ed77f00f5fd83070a85c0bc8101203eab (diff)
Merge branch 'sh-fix-profiler-ruby-5.1' into 'master'
Fix Profiler to work with Rails 5.1 Closes #61051 See merge request gitlab-org/gitlab-ce!27774
Diffstat (limited to 'lib')
-rw-r--r--lib/gitlab/profiler.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gitlab/profiler.rb b/lib/gitlab/profiler.rb
index 28ed587f5c7..890228e5e78 100644
--- a/lib/gitlab/profiler.rb
+++ b/lib/gitlab/profiler.rb
@@ -73,7 +73,7 @@ module Gitlab
result = with_custom_logger(logger) do
with_user(user) do
- RubyProf.profile { app.public_send(verb, url, post_data, headers) } # rubocop:disable GitlabSecurity/PublicSend
+ RubyProf.profile { app.public_send(verb, url, params: post_data, headers: headers) } # rubocop:disable GitlabSecurity/PublicSend
end
end