-
I already submitted a patch for this in patches section.
2008-08-31 18:30:38 UTC by dodil
-
Fix for 2028321 - parseAcl method has a bug.
2008-08-30 19:27:50 UTC by dodil
-
Is changing lastColon = a.indexOf(":"); to lastColon = a.lastIndexOf(":"); a proper fix ?
If so, I can submit a patch for this.
--Don Pinto.
2008-08-30 19:06:27 UTC by dodil
-
akornev committed revision 179 to the ZooKeeper SVN repository, changing 1 files.
2008-08-19 19:29:34 UTC by akornev
-
+1 committed at revision 177.
2008-08-18 20:13:55 UTC by akornev
-
akornev committed revision 178 to the ZooKeeper SVN repository, changing 6 files.
2008-08-18 20:12:18 UTC by akornev
-
akornev committed revision 177 to the ZooKeeper SVN repository, changing 11 files.
2008-08-18 20:07:58 UTC by akornev
-
This is a merged port of the patches in JIRAs 2 and 108.
2008-08-18 09:36:06 UTC by fpj
-
This is in ZooKeeper class.
2008-07-25 23:17:19 UTC by nobody
-
code for finding colons is incorrect. It gets the same colon twice and then considers it a wrong parse
private static ArrayList parseACLs(String aclString) {
ArrayList acl;
String acls[] = aclString.split(",");
acl = new ArrayList();
for (String a : acls) {
int firstColon = a.indexOf(':');
int lastColon =...
2008-07-25 23:16:30 UTC by nobody