git-svn-id: https://svn.apache.org/repos/asf/zookeeper/trunk@1125544 13f79535-47bb-0310-9956-ffa450edef68
@@ -212,6 +212,8 @@ BUGFIXES:
ZOOKEEPER-1061. Zookeeper stop fails if start called twice. (Ted Dunning via mahadev)
ZOOKEEPER-1059. stat command isses on non-existing node causes NPE. (Bhallamudi Kamesh via mahadev)
+
+ ZOOKEEPER-1058. fix typo in opToString for getData. (camille)
IMPROVEMENTS:
ZOOKEEPER-724. Improve junit test integration - log harness information
@@ -155,7 +155,7 @@ public class Request {
case OpCode.exists:
return "exists";
case OpCode.getData:
- return "getDate";
+ return "getData";
case OpCode.setData:
return "setData";
case OpCode.sync: