[PATCH 1 of 7] configitem: reorder items in the 'server' section

Paul Morelle paul.morelle at octobus.net
Wed Jun 20 16:36:22 UTC 2018


# HG changeset patch
# User Boris Feld <boris.feld at octobus.net>
# Date 1529425297 -7200
#      Tue Jun 19 18:21:37 2018 +0200
# Node ID a7944f21dbfc9e912606b82dc1001e4640598600
# Parent  a0e185f104541858a0b049e1fb67c4d113930a9a
# EXP-Topic remote-debug
# Available At https://bitbucket.org/octobus/mercurial-devel/
#              hg pull https://bitbucket.org/octobus/mercurial-devel/ -r a7944f21dbfc
configitem: reorder items in the 'server' section

Keeping things alphabetically sorted.

diff -r a0e185f10454 -r a7944f21dbfc mercurial/configitems.py
--- a/mercurial/configitems.py	Fri Feb 02 14:21:04 2018 -0800
+++ b/mercurial/configitems.py	Tue Jun 19 18:21:37 2018 +0200
@@ -936,16 +936,16 @@
 coreconfigitem('server', 'disablefullbundle',
     default=False,
 )
-coreconfigitem('server', 'streamunbundle',
-    default=False,
+coreconfigitem('server', 'maxhttpheaderlen',
+    default=1024,
 )
 coreconfigitem('server', 'pullbundle',
     default=False,
 )
-coreconfigitem('server', 'maxhttpheaderlen',
-    default=1024,
+coreconfigitem('server', 'preferuncompressed',
+    default=False,
 )
-coreconfigitem('server', 'preferuncompressed',
+coreconfigitem('server', 'streamunbundle',
     default=False,
 )
 coreconfigitem('server', 'uncompressed',


More information about the Mercurial-devel mailing list