From 5c7d126b8656ac16368551327d1bec2d7eadfde5 Mon Sep 17 00:00:00 2001 From: Matthieu Gallien Date: Wed, 6 Sep 2023 12:04:25 +0200 Subject: [PATCH] with files client automated locking we need a sane default value would prevent having locks with 0 tiemout because the config value is never changed on server there will be more locks since desktop files client will automatically lock office files making this more visible Signed-off-by: Matthieu Gallien --- lib/Service/ConfigService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Service/ConfigService.php b/lib/Service/ConfigService.php index 2072b6b3..b0395533 100644 --- a/lib/Service/ConfigService.php +++ b/lib/Service/ConfigService.php @@ -39,7 +39,7 @@ class ConfigService { public const LOCK_TIMEOUT = 'lock_timeout'; public $defaults = [ - self::LOCK_TIMEOUT => '0' + self::LOCK_TIMEOUT => '30' ]; /** @var string */