bundle2: issue remote output as "status" (issue4612) stable
authorPierre-Yves David <pierre-yves.david@fb.com>
Fri, 24 Apr 2015 00:46:48 +0100
branchstable
changeset 24846 e79dd1c9753e
parent 24845 8133494accf1
child 24847 b705e5ab3b07
bundle2: issue remote output as "status" (issue4612) Remote output should be silenced by --quiet. The issue was found while running `test-largefiles-cache.t` so it will get tested once we switch bundle2 by default.
mercurial/bundle2.py
--- a/mercurial/bundle2.py	Thu Apr 23 14:27:26 2015 -0700
+++ b/mercurial/bundle2.py	Fri Apr 24 00:46:48 2015 +0100
@@ -1171,7 +1171,7 @@
 def handleoutput(op, inpart):
     """forward output captured on the server to the client"""
     for line in inpart.read().splitlines():
-        op.ui.write(('remote: %s\n' % line))
+        op.ui.status(('remote: %s\n' % line))
 
 @parthandler('replycaps')
 def handlereplycaps(op, inpart):