configparser: turn on HTTP fetching by default

Summary: Now that EdenAPI fetching is turned on everywhere, let's make it the default.

Reviewed By: quark-zju

Differential Revision: D31184213

fbshipit-source-id: 450c1167d42ee867b505a2a14b0c636bed81107d
This commit is contained in:
Arun Kulshreshtha 2021-09-25 16:31:57 -07:00 committed by Facebook GitHub Bot
parent fed90bbb01
commit c1cb465dd7
2 changed files with 2 additions and 2 deletions

View File

@ -207,7 +207,7 @@ configitem("remotefilelog", "simplecacheserverstore", default=False)
configitem("remotefilelog", "server", default=None)
configitem("remotefilelog", "getpackversion", default=1)
configitem("remotefilelog", "commitsperrepack", default=100)
configitem("remotefilelog", "http", default=False)
configitem("remotefilelog", "http", default=True)
configitem("edenapi", "url", default=None)
testedwith = "ships-with-fb-hgext"

View File

@ -143,7 +143,7 @@ configitem = registrar.configitem(configtable)
configitem("treemanifest", "fetchdepth", default=TREE_DEPTH_MAX)
configitem("treemanifest", "stickypushpath", default=True)
configitem("treemanifest", "http", default=False)
configitem("treemanifest", "http", default=True)
PACK_CATEGORY = "manifests"