# HG changeset patch # User Pierre-Yves David # Date 2023-06-19 13:48:03 # Node ID b11421f3daf9bb14b1e5e564b2d7e2b27f994a04 # Parent 4238e6b22fc4937c1dcf24aff20b713a742e4197 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` diff --git a/mercurial/sshpeer.py b/mercurial/sshpeer.py --- a/mercurial/sshpeer.py +++ b/mercurial/sshpeer.py @@ -213,7 +213,7 @@ def _clientcapabilities(): 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)