-
Bug
-
Resolution: Done
-
Major
-
None
-
None
CLI commands with multiple quotes are not properly parsed.
/subsystem=logging/console-handler=CONSOLE:write-attribute(name=filter, value="all(match(\"pattern1\"),not(match(\"pattern2\")))")
I would expect the above command to return the following to the OSH.
all(match("pattern"),not(match("pattern2")))
What actually gets passed to the OSH is
all(match(
Note this filter syntax relies on PR https://github.com/jbossas/jboss-as/pull/3251