Skip to content
Snippets Groups Projects
Commit ce09dc31 authored by Jacob Vosmaer (GitLab)'s avatar Jacob Vosmaer (GitLab)
Browse files

Fix method lookup

parent 48dacd5e
No related branches found
No related tags found
No related merge requests found
module Gitlab
module GitalyClient
class ConflictsService
include Gitlab::EncodingHelper
MAX_MSG_SIZE = 128.kilobytes.freeze
 
def initialize(repository, our_commit_oid, their_commit_oid)
Loading
Loading
@@ -22,7 +24,7 @@ module Gitlab
end
 
def resolve_conflicts(target_repository, resolution, source_branch, target_branch)
reader = GitalyClient.binary_stringio(resolution.files.to_json)
reader = binary_stringio(resolution.files.to_json)
 
req_enum = Enumerator.new do |y|
header = resolve_conflicts_request_header(target_repository, resolution, source_branch, target_branch)
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment