Page MenuHomePhabricator

D21349.diff
No OneTemporary

D21349.diff

diff --git a/support/hg/arc-hg.py b/support/hg/arc-hg.py
--- a/support/hg/arc-hg.py
+++ b/support/hg/arc-hg.py
@@ -159,25 +159,20 @@
source, branches = hg.parseurl(ui.expandpath(source))
remote = hg.peer(repo, opts, source)
- bundle, remotebranches, cleanup = bundlerepo.getremotechanges(
- ui,
- repo,
- remote)
-
- try:
- for n in remotebranches:
- ctx = bundle[n]
+ with remote.commandexecutor() as e:
+ branchmap = e.callcommand('branchmap', {}).result()
+
+ for branch_name in branchmap:
+ for branch_node in branchmap[branch_name]:
markers.append({
'type': 'branch',
- 'name': ctx.branch(),
- 'node': node.hex(ctx.node()),
+ 'name': branch_name,
+ 'node': node.hex(branch_node),
})
- finally:
- cleanup()
with remote.commandexecutor() as e:
remotemarks = bookmarks.unhexlifybookmarks(e.callcommand('listkeys', {
- 'namespace': 'bookmarks',
+ 'namespace': 'bookmarks',
}).result())
for mark in remotemarks:

File Metadata

Mime Type
text/plain
Expires
Sun, Mar 23, 7:55 PM (1 w, 3 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7718944
Default Alt Text
D21349.diff (1 KB)

Event Timeline