##// END OF EJS Templates
feat: config change to enable httppostarguments for hg repo, resolves issue with push/pull on big hg repos
andverb -
r1260:0525138c default
parent child Browse files
Show More
@@ -136,6 +136,9 b' def make_hg_ui_from_config(repo_config):'
136 136 # make our hgweb quiet so it doesn't print output
137 137 baseui.setconfig(b'ui', b'quiet', b'true')
138 138
139 # use POST requests with args instead of GET with headers - fixes issues with big repos with lots of branches
140 baseui.setconfig(b'experimental', b'httppostargs', b'true')
141
139 142 return baseui
140 143
141 144
General Comments 0
You need to be logged in to leave comments. Login now