mercurial/commands.py
changeset 30762 35b516f800e0
parent 30758 76104a4899ad
child 30785 301512fd6852
--- a/mercurial/commands.py	Sat Dec 24 13:51:12 2016 -0700
+++ b/mercurial/commands.py	Sat Dec 24 15:21:46 2016 -0700
@@ -1959,6 +1959,12 @@
              fm.formatlist(sorted(e.name() for e in compengines
                                   if e.available()),
                            name='compengine', fmt='%s', sep=', '))
+    wirecompengines = util.compengines.supportedwireengines(util.SERVERROLE)
+    fm.write('compenginesserver', _('checking available compression engines '
+                                    'for wire protocol (%s)\n'),
+             fm.formatlist([e.name() for e in wirecompengines
+                            if e.wireprotosupport()],
+                           name='compengine', fmt='%s', sep=', '))
 
     # templates
     p = templater.templatepaths()