From 5333751e45eae08539a6d0f89073a63c05bc5db5 Mon Sep 17 00:00:00 2001 From: Unrud Date: Sun, 25 Oct 2020 20:27:26 +0100 Subject: [PATCH] Allow float for server->timeout setting --- radicale/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/radicale/config.py b/radicale/config.py index ae5c9c5..abb3309 100644 --- a/radicale/config.py +++ b/radicale/config.py @@ -118,7 +118,7 @@ DEFAULT_CONFIG_SCHEMA = OrderedDict([ ("timeout", { "value": "30", "help": "socket timeout", - "type": positive_int}), + "type": positive_float}), ("ssl", { "value": "False", "help": "use SSL connection",