You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Complex rules using this rule are failing therefore the daemon fails to start. An example of such rule is body __LOCAL_TEST1 /\btest1\b/ body __LOCAL_TEST2 /\btest2\b/ body __LOCAL_TEST3 /\btest3\b/ meta LOCAL_MULTIPLE_TESTS (((0.8 * __LOCAL_TEST1) + !(0.5 * __LOCAL_TEST2)) > 1) score LOCAL_MULTIPLE_TESTS 0.1
The rule works fine if i use + ~ instead of + !. My guess here is that the round brackets are affecting the regex or something.
Currently OA does not allow for the operator
+ !
in themeta
part.Eg:
Changing to
+ ~
works, as would&& !
however+ !
should also be allowed.The text was updated successfully, but these errors were encountered: