From e6cb1a41e9ab4b6c1eab96addbc92cb39756fd53 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Sun, 25 May 2025 10:17:44 +0200 Subject: [PATCH] datamodel nit: fix a typo in error message --- python/knot_resolver/datamodel/config_schema.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/knot_resolver/datamodel/config_schema.py b/python/knot_resolver/datamodel/config_schema.py index 713c4a3e2..2cc2680c9 100644 --- a/python/knot_resolver/datamodel/config_schema.py +++ b/python/knot_resolver/datamodel/config_schema.py @@ -196,7 +196,7 @@ class KresConfig(ConfigSchema): workers_max = _workers_max_count() if int(self.workers) > workers_max: raise ValueError( - f"can't run with more workers then the recommended maximum {workers_max} or hardcoded {WORKERS_MAX}" + f"can't run with more workers than the recommended maximum {workers_max} or hardcoded {WORKERS_MAX}" ) # sanity check -- 2.47.2