##// END OF EJS Templates
bundle2: remove restriction around sidedata...
Raphaël Gomès -
r47845:1680c947 default
parent child Browse files
Show More
@@ -2013,13 +2013,6 b' def handlechangegroup(op, inpart):'
2013 2013 )
2014 2014 scmutil.writereporequirements(op.repo)
2015 2015
2016 bundlesidedata = bool(b'exp-sidedata' in inpart.params)
2017 reposidedata = bool(b'exp-sidedata-flag' in op.repo.requirements)
2018 if reposidedata and not bundlesidedata:
2019 msg = b"repository is using sidedata but the bundle source do not"
2020 hint = b'this is currently unsupported'
2021 raise error.Abort(msg, hint=hint)
2022
2023 2016 extrakwargs = {}
2024 2017 targetphase = inpart.params.get(b'targetphase')
2025 2018 if targetphase is not None:
General Comments 0
You need to be logged in to leave comments. Login now