diff --git a/hgext3rd/heptapod/git.py b/hgext3rd/heptapod/git.py index 7e8120cddbaa802936e1f3198ef2788f5394a1e9_aGdleHQzcmQvaGVwdGFwb2QvZ2l0LnB5..37f8e3ebf3bd0327fc6ee82fa0c727b39a3d6197_aGdleHQzcmQvaGVwdGFwb2QvZ2l0LnB5 100644 --- a/hgext3rd/heptapod/git.py +++ b/hgext3rd/heptapod/git.py @@ -282,10 +282,13 @@ allow_bookmarks=allow_bookmarks, to_prune=to_prune, ) - self.branchmap_entry_process_finalize(hg_shas=hg_shas, - git_refs=git_refs, - branch=branch, - logprefix=logprefix) + self.branchmap_entry_process_finalize( + hg_shas=hg_shas, + gitlab_refs=git_refs, + branchmap_branch=branch, + gitlab_branch=gb, + logprefix=logprefix + ) return git_refs @@ -289,7 +292,11 @@ return git_refs - def branchmap_entry_process_finalize(self, hg_shas, git_refs, branch, + def branchmap_entry_process_finalize(self, + hg_shas, + gitlab_refs, + gitlab_branch, + branchmap_branch, logprefix=b""): """Final step of storing exportable values for the given branch. @@ -316,10 +323,10 @@ # that is disabled in Heptapod just to avoid calling # the expensive _filter_obsolete_heads twice per branch msg = _(b'rejecting multiple heads on branch "%s"') - msg %= branch + msg %= branchmap_branch hint = _(b'%d heads: %s') hint %= (len(hg_shas), scmutil.nodesummaries(repo, hg_shas)) raise error.Abort(msg, hint=hint) ui.note(logprefix, b"Multiple heads for branch '%s': %r" % ( @@ -320,8 +327,8 @@ hint = _(b'%d heads: %s') hint %= (len(hg_shas), scmutil.nodesummaries(repo, hg_shas)) raise error.Abort(msg, hint=hint) ui.note(logprefix, b"Multiple heads for branch '%s': %r" % ( - branch, util.format_bytes_list(hg_shas))) + branchmap_branch, util.format_bytes_list(hg_shas))) for hg_sha in hg_shas: @@ -327,3 +334,3 @@ for hg_sha in hg_shas: - git_refs[hg_sha].heads.add( + gitlab_refs[hg_sha].heads.add( git_branch_ref(b'wild/' + hg_sha)) @@ -329,5 +336,5 @@ git_branch_ref(b'wild/' + hg_sha)) - gca = self.multiple_heads_choose(hg_shas, branch) + gca = self.multiple_heads_choose(hg_shas, branchmap_branch) if gca is None: # giving up in order to avoid confusing situations return @@ -335,6 +342,7 @@ ui.note(logprefix, b"Chose %s out of multiple heads %s " b"for forwarding branch %r" % ( - gca_sha, util.format_bytes_list(hg_shas), branch)) + gca_sha, util.format_bytes_list(hg_shas), + branchmap_branch)) hg_shas = [gca_sha] hg_sha = hg_shas.pop() @@ -339,7 +347,6 @@ hg_shas = [gca_sha] hg_sha = hg_shas.pop() - gb = self.git_branch_for_branchmap_branch(branch) - git_refs[hg_sha].heads.add(git_branch_ref(gb)) + gitlab_refs[hg_sha].heads.add(git_branch_ref(gitlab_branch)) def published_topic_latest_hg_sha(self, topic, ctx, log_before_ctx=None): """Rewrapping of `latest_topic_descendant` returning hg sha.