pullbundle: point out the output flooding issue from core
authorPierre-Yves David <pierre-yves.david@octobus.net>
Tue, 25 Sep 2018 13:44:32 +0200
changeset 4141 1421ff5c5c96
parent 4140 9b71aa222f8e
child 4142 683ceec8d37e
pullbundle: point out the output flooding issue from core Right now, we don't have a reliable progress report when using pullbundle.
hgext3rd/pullbundle.py
--- a/hgext3rd/pullbundle.py	Tue Sep 25 13:29:49 2018 +0200
+++ b/hgext3rd/pullbundle.py	Tue Sep 25 13:44:32 2018 +0200
@@ -55,11 +55,15 @@
 works. Yet they are already useful and used in production.
 
 Performances are expected to greatly improved in the final implementation,
-especially if some of it end up being compiled.
+especially if some of it end up being compiled code.
 
 This first implementation lacks the ability to server the cached bundle from a
 CDN. We'll want this limitation to be lifted quickly.
 
+The way mercurial core report progress is designed for the receival of a single
+changegroup. So currently using pullbundle means flooding the user with output.
+This will have to be fixed.
+
 Why is does this live in the same repository as evolve
 ======================================================