Commit d4619e12 authored by Gary Holtz's avatar Gary Holtz

Adding a double splat

Ruby 2.7. asks that we explicitly specify we're passing
keyword arguments
parent f016101b
......@@ -610,7 +610,7 @@ module Gitlab
}
wrapped_gitaly_errors do
gitaly_operation_client.user_revert(args)
gitaly_operation_client.user_revert(**args)
end
end
......@@ -626,7 +626,7 @@ module Gitlab
}
wrapped_gitaly_errors do
gitaly_operation_client.user_cherry_pick(args)
gitaly_operation_client.user_cherry_pick(**args)
end
end
......@@ -640,7 +640,7 @@ module Gitlab
}
wrapped_gitaly_errors do
gitaly_operation_client.user_update_submodule(args)
gitaly_operation_client.user_update_submodule(**args)
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