[jboss-jira] [JBoss JIRA] (AS7-5762) Allow multiple quoted strings within a CLI command

James Perkins (JIRA) jira-events at lists.jboss.org
Tue Oct 16 13:01:01 EDT 2012


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


More information about the jboss-jira mailing list