[PATCH 1 of 2] bundlerepo: use supportedincomingversions instead of allsupportedversions

Augie Fackler raf at durin42.com
Thu Aug 4 18:17:45 UTC 2016


# HG changeset patch
# User Augie Fackler <augie at google.com>
# Date 1470334415 14400
#      Thu Aug 04 14:13:35 2016 -0400
# Node ID c6da11db73e97aceabcc85c9f5bb893643bf01a7
# Parent  f2846d54664567083fdd8e400b8021e09b498c48
bundlerepo: use supportedincomingversions instead of allsupportedversions

Since bundlerepo is really a pull-like operation, this is the correct
method to use here.

diff --git a/mercurial/bundlerepo.py b/mercurial/bundlerepo.py
--- a/mercurial/bundlerepo.py
+++ b/mercurial/bundlerepo.py
@@ -283,7 +283,8 @@ class bundlerepository(localrepo.localre
                                                   "multiple changegroups")
                     cgstream = part
                     version = part.params.get('version', '01')
-                    if version not in changegroup.allsupportedversions(ui):
+                    legalcgvers = changegroup.supportedincomingversions(self)
+                    if version not in legalcgvers:
                         msg = _('Unsupported changegroup version: %s')
                         raise error.Abort(msg % version)
                     if self.bundle.compressed():


More information about the Mercurial-devel mailing list