D3289: streamclone: use command executor for wire protocol commands
indygreg (Gregory Szorc)
phabricator at mercurial-scm.org
Fri Apr 13 22:09:41 UTC 2018
This revision was automatically updated to reflect the committed changes.
Closed by commit rHG65b86ee69383: streamclone: use command executor for wire protocol commands (authored by indygreg, committed by ).
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D3289?vs=8128&id=8174
REVISION DETAIL
https://phab.mercurial-scm.org/D3289
AFFECTED FILES
mercurial/streamclone.py
CHANGE DETAILS
diff --git a/mercurial/streamclone.py b/mercurial/streamclone.py
--- a/mercurial/streamclone.py
+++ b/mercurial/streamclone.py
@@ -126,11 +126,18 @@
# creation.
rbranchmap = None
if remote.capable('branchmap'):
- rbranchmap = remote.branchmap()
+ with remote.commandexecutor() as e:
+ rbranchmap = e.callcommand('branchmap', {}).result()
repo.ui.status(_('streaming all changes\n'))
- fp = remote.stream_out()
+ with remote.commandexecutor() as e:
+ fp = e.callcommand('stream_out', {}).result()
+
+ # TODO strictly speaking, this code should all be inside the context
+ # manager because the context manager is supposed to ensure all wire state
+ # is flushed when exiting. But the legacy peers don't do this, so it
+ # doesn't matter.
l = fp.readline()
try:
resp = int(l)
To: indygreg, #hg-reviewers, durin42
Cc: mercurial-devel
More information about the Mercurial-devel
mailing list