Skip to content

Commit bec08df

Browse files
authored
ZOOKEEPER-4953: Fix typos for word ZooKeeper from ZooKeeeper
Reviewers: kezhuw Author: rahulonGH Closes #2281 from rahulonGH/rahulkumar/fixing-typo
1 parent 06b418b commit bec08df

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

zookeeper-contrib/zookeeper-contrib-zooinspector/src/main/java/org/apache/zookeeper/inspector/manager/ZooInspectorManager.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,13 +118,13 @@ public void setDefaultNodeViewerConfiguration(
118118
/**
119119
* @param connectionProps
120120
* - the connection properties last used to connect to the
121-
* zookeeeper instance
121+
* zookeeper instance
122122
*/
123123
public void setLastConnectionProps(Properties connectionProps);
124124

125125
/**
126126
* @return last connection Properties - the connection properties last used
127-
* to connect to the zookeeeper instance
127+
* to connect to the zookeeper instance
128128
*/
129129
public Properties getLastConnectionProps();
130130

zookeeper-docs/src/main/resources/markdown/zookeeperProgrammers.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -837,7 +837,7 @@ on nodes that exist and the client must have READ permission otherwise
837837
838838
#### Builtin ACL Schemes
839839
840-
ZooKeeeper has the following built in schemes:
840+
ZooKeeper has the following built in schemes:
841841
842842
* **world** has a
843843
single id, _anyone_, that represents
@@ -1106,7 +1106,7 @@ _digest_. Additional plugins can adding using system properties. At
11061106
startup the ZooKeeper server will look for system properties that start with
11071107
"zookeeper.authProvider." and interpret the value of those properties as the class name
11081108
of an authentication plugin. These properties can be set using the
1109-
_-Dzookeeeper.authProvider.X=com.f.MyAuth_ or adding entries such as
1109+
_-Dzookeeper.authProvider.X=com.f.MyAuth_ or adding entries such as
11101110
the following in the server configuration file:
11111111
11121112
@@ -1115,7 +1115,7 @@ the following in the server configuration file:
11151115
11161116
11171117
Care should be taking to ensure that the suffix on the property is unique. If there are
1118-
duplicates such as _-Dzookeeeper.authProvider.X=com.f.MyAuth -Dzookeeper.authProvider.X=com.f.MyAuth2_,
1118+
duplicates such as _-Dzookeeper.authProvider.X=com.f.MyAuth -Dzookeeper.authProvider.X=com.f.MyAuth2_,
11191119
only one will be used. Also all servers must have the same plugins defined, otherwise clients using
11201120
the authentication schemes provided by the plugins will have problems connecting to some servers.
11211121

zookeeper-server/src/test/java/org/apache/zookeeper/ZooKeeperTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -801,7 +801,7 @@ public void testWaitForConnection() throws Exception {
801801
}
802802
long endTime = System.currentTimeMillis();
803803
assertTrue(endTime - startTime >= timeout,
804-
"ZooKeeeperMain does not wait until the specified timeout");
804+
"ZooKeeperMain does not wait until the specified timeout");
805805

806806
}
807807

0 commit comments

Comments
 (0)