Mercurial > hg-stable
changeset 50702:b11421f3daf9
clone-bundle: drop the now unused `inlineclonebundles` capabilities
We no longer us the capabilities as a side way to passe argument to the
`clonebundle commands`
author | Pierre-Yves David <pierre-yves.david@octobus.net> |
---|---|
date | Mon, 19 Jun 2023 15:48:03 +0200 |
parents | 4238e6b22fc4 |
children | af60de30fb50 |
files | mercurial/sshpeer.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/sshpeer.py Mon Jun 19 15:49:35 2023 +0200 +++ b/mercurial/sshpeer.py Mon Jun 19 15:48:03 2023 +0200 @@ -213,7 +213,7 @@ Returns a list of capabilities that are supported by this client. """ - protoparams = {b'partial-pull', b'inlineclonebundles'} + protoparams = {b'partial-pull'} comps = [ e.wireprotosupport().name for e in util.compengines.supportedwireengines(util.CLIENTROLE)