From 34b5d8a5eb4edee301d497550e04818f77766f23 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Kundr=C3=A1t?= Date: Sun, 24 Sep 2017 17:46:35 +0200 Subject: [PATCH] Actually allow for overriding the lock file The documentation says that it should be possible and the code already consults that config key, so relax the validation a bit so that it could be overridden. Change-Id: Ic4e8964e4ad4027168e78aef5daf42788e273fa4 --- boartty/config.py | 1 + 1 file changed, 1 insertion(+) diff --git a/boartty/config.py b/boartty/config.py index 5cc8d5d..0c1a541 100644 --- a/boartty/config.py +++ b/boartty/config.py @@ -45,6 +45,7 @@ class ConfigSchema(object): 'ssl-ca-path': str, 'dburi': str, 'log-file': str, + 'lock-file': str, 'socket': str, 'auth-type': v.Any('basic', 'digest', 'form'), }