Submitter | Siddharth Agarwal |
---|---|
Date | May 9, 2017, 3:45 a.m. |
Message ID | <b433f29233e32d1c1e66.1494301533@devvm028.frc2.facebook.com> |
Download | mbox | patch |
Permalink | /patch/20539/ |
State | Superseded |
Headers | show |
Comments
Patch
diff --git a/mercurial/exchange.py b/mercurial/exchange.py --- a/mercurial/exchange.py +++ b/mercurial/exchange.py @@ -1332,7 +1332,9 @@ def _pullbundle2(pullop): For now, the only supported data are changegroup.""" kwargs = {'bundlecaps': caps20to10(pullop.repo)} - streaming, streamreqs = streamclone.canperformstreamclone(pullop) + # At the moment we don't do stream clones over bundle2. If that is + # implemented then here's where the check for that will go. + streaming = False # pulling changegroup pullop.stepsdone.add('changegroup')