-
Change Request
-
Resolution: Fixed
-
Trivial
-
4.0.25, 5.0.4, 5.2.0beta2
-
Sprint 69 (Oct 2020)
-
1
Now, preprocessing parameters stored in XML files as LF-delimited string. This format is very inconvenient to work with.
An example:
<preprocessing> <step> <type>REGEX</type> <params>server accepts handled requests\s+([0-9]+) ([0-9]+) ([0-9]+) \1</params> </step> </preprocessing>
I propose to store it as array of strings:
<preprocessing> <step> <type>REGEX</type> <parameters> <parameter>server accepts handled requests\s+([0-9]+) ([0-9]+) ([0-9]+)</parameter> <parameter>\1</parameter> </parameters> </step> </preprocessing>