From 17b476011216e0d7f1fb363700766e4ec71f23e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Zimmermann?= <101292599+ekneg54@users.noreply.github.com> Date: Thu, 12 Oct 2023 09:26:07 +0200 Subject: [PATCH] Update logprep/processor/calculator/rule.py Co-authored-by: dtrai2 <95028228+dtrai2@users.noreply.github.com> --- logprep/processor/calculator/rule.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/logprep/processor/calculator/rule.py b/logprep/processor/calculator/rule.py index 1b4d22c7d..bb27c5870 100644 --- a/logprep/processor/calculator/rule.py +++ b/logprep/processor/calculator/rule.py @@ -114,8 +114,8 @@ class Config(FieldManagerRule.Config): """The maximum time in seconds for the calculation. Defaults to :code:`1`""" ignore_missing_fields: bool = field(validator=validators.instance_of(bool), default=False) """If set to :code:`True` missing fields will be ignored, no warning is logged, - no calculation is performed and the event is not tagged with the failure tag. - Defaults to :code:`False`""" + and the event is not tagged with the a failure tag. As soon as one field is missing + no calculation is performed at all. Defaults to :code:`False`""" mapping: dict = field(default="", init=False, repr=False, eq=False) def __attrs_post_init__(self):