Commit 11160924 authored by Bob Van Landuyt's avatar Bob Van Landuyt

Merge branch '257438-ruby-2-7-kwargs-deprecation-warnings' into 'master'

Ruby 2.7 kwargs deprecation warnings for repository.rb

See merge request gitlab-org/gitlab!44225
parents fdc120ce d4619e12
...@@ -610,7 +610,7 @@ module Gitlab ...@@ -610,7 +610,7 @@ module Gitlab
} }
wrapped_gitaly_errors do wrapped_gitaly_errors do
gitaly_operation_client.user_revert(args) gitaly_operation_client.user_revert(**args)
end end
end end
...@@ -626,7 +626,7 @@ module Gitlab ...@@ -626,7 +626,7 @@ module Gitlab
} }
wrapped_gitaly_errors do wrapped_gitaly_errors do
gitaly_operation_client.user_cherry_pick(args) gitaly_operation_client.user_cherry_pick(**args)
end end
end end
...@@ -640,7 +640,7 @@ module Gitlab ...@@ -640,7 +640,7 @@ module Gitlab
} }
wrapped_gitaly_errors do wrapped_gitaly_errors do
gitaly_operation_client.user_update_submodule(args) gitaly_operation_client.user_update_submodule(**args)
end end
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment