From 6c12b13ec1c1173a48f55913153482f2b17da172 Mon Sep 17 00:00:00 2001 From: Unrud Date: Tue, 28 Aug 2018 16:19:48 +0200 Subject: [PATCH] reduce default parallel connections to 8 --- config | 2 +- radicale/config.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config b/config index 6c2ea44..02f9237 100644 --- a/config +++ b/config @@ -18,7 +18,7 @@ #hosts = 127.0.0.1:5232 # Max parallel connections -#max_connections = 20 +#max_connections = 8 # Max size of request body (bytes) #max_content_length = 100000000 diff --git a/radicale/config.py b/radicale/config.py index 42966fe..7907d04 100644 --- a/radicale/config.py +++ b/radicale/config.py @@ -65,7 +65,7 @@ INITIAL_CONFIG = OrderedDict([ "aliases": ["-H", "--hosts"], "type": str}), ("max_connections", { - "value": "20", + "value": "8", "help": "maximum number of parallel connections", "type": positive_int}), ("max_content_length", {