# HG changeset patch # User RhodeCode Admin # Date 2024-09-11 11:27:19 # Node ID b2098028d68a3faeab83c99b171acb98ad77b32c # Parent c1e62560aeaa63ef554448f546495a9c6fe26e9b fix: auth. Disable httpostargs until auth problems are resolved diff --git a/vcsserver/scm_app.py b/vcsserver/scm_app.py --- a/vcsserver/scm_app.py +++ b/vcsserver/scm_app.py @@ -137,7 +137,7 @@ def make_hg_ui_from_config(repo_config): baseui.setconfig(b'ui', b'quiet', b'true') # use POST requests with args instead of GET with headers - fixes issues with big repos with lots of branches - baseui.setconfig(b'experimental', b'httppostargs', b'true') + baseui.setconfig(b'experimental', b'httppostargs', b'false') return baseui