James Perkins created AS7-5762:
----------------------------------
Summary: Allow multiple quoted strings within a CLI command
Key: AS7-5762
URL:
https://issues.jboss.org/browse/AS7-5762
Project: Application Server 7
Issue Type: Bug
Components: CLI
Reporter: James Perkins
Assignee: Alexey Loubyansky
CLI commands with multiple quotes are not properly parsed.
{code}
/subsystem=logging/console-handler=CONSOLE:write-attribute(name=filter,
value="all(match(\"pattern1\"),not(match(\"pattern2\")))")
{code}
I would expect the above command to return the following to the OSH.
{code}
all(match("pattern"),not(match("pattern2")))
{code}
What actually gets passed to the OSH is
{code}
all(match(
{code}
Note this filter syntax relies on PR
https://github.com/jbossas/jboss-as/pull/3251
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see:
http://www.atlassian.com/software/jira