parseACLs in ZooKeeper.java fails to parse elements of ACL, should be 
lastIndexOf rather than IndexOf
-----------------------------------------------------------------------------------------------------

                 Key: ZOOKEEPER-68
                 URL: https://issues.apache.org/jira/browse/ZOOKEEPER-68
             Project: Zookeeper
          Issue Type: Bug
          Components: java client
            Reporter: Jakob Homan
            Priority: Minor


the parseACLs(String aclString) method attempts to prase ACLs from the form of 
scheme:id:perm into the three components, delineated by the colons.  The 
current version calls indexOf for both the first and second colon, receiving 
the same value for both and failing as if there were only one colon in the 
string.  I created a one-line patch to call lastIndexOf for the second colon.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to