From 24653143c6c330a3f7685b2da01680f8623e1f1f Mon Sep 17 00:00:00 2001 From: Mika Ayenson Date: Wed, 29 Nov 2023 09:43:04 -0600 Subject: [PATCH] Update QueryRuleData (#3294) (cherry picked from commit f7b9a1f8dfbe75b9ec658457e4edd7dfaa7c5cc4) --- detection_rules/rule.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/detection_rules/rule.py b/detection_rules/rule.py index 667380e40c5..7584b56adaa 100644 --- a/detection_rules/rule.py +++ b/detection_rules/rule.py @@ -569,8 +569,6 @@ def validator(self) -> Optional[QueryValidator]: return KQLValidator(self.query) elif self.language == "eql": return EQLValidator(self.query) - elif self.language == "esql": - return ESQLValidator(self.query) def validate_query(self, meta: RuleMeta) -> None: validator = self.validator