# HG changeset patch # User RhodeCode Admin # Date 2023-08-24 11:29:49 # Node ID 95f3ddbb9dbf19e855fc1dad9d77ddf26b1f0d71 # Parent 1d9af4ac5da6371335a4d88922a9ae34c827f488 updated configs diff --git a/configs/gunicorn_config.py b/configs/gunicorn_config.py --- a/configs/gunicorn_config.py +++ b/configs/gunicorn_config.py @@ -64,7 +64,7 @@ workers = 6 # Gunicorn access log level loglevel = 'info' -# Process name visible in process list +# Process name visible in a process list proc_name = 'rhodecode_vcsserver' # Type of worker class, one of `sync`, `gevent` diff --git a/pyproject.toml b/pyproject.toml --- a/pyproject.toml +++ b/pyproject.toml @@ -50,5 +50,10 @@ ignore = [ # Same as Black. line-length = 120 + [tool.ruff.isort] known-first-party = ["vcsserver"] + +[tool.black] +line-length = 120 +target-version = ['py310', 'py311']