# HG changeset patch # User RhodeCode Admin # Date 2024-09-11 11:27:19 # Node ID e0dbbf3dbda0d9463d73232fa2bcab8ee5498c7c # Parent 57090f1d3cdee0c8028ded04abe2126ad2538c71 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