This is an automated email from the ASF dual-hosted git repository. kezhuw pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/zookeeper.git
The following commit(s) were added to refs/heads/master by this push: new bec08dfa0 ZOOKEEPER-4953: Fix typos for word ZooKeeper from ZooKeeeper bec08dfa0 is described below commit bec08dfa0e63ffe7b72bc01a3ea9b0b69a50e3d2 Author: Rahul Kumar <39871812+rahulo...@users.noreply.github.com> AuthorDate: Wed Aug 6 13:30:14 2025 +0530 ZOOKEEPER-4953: Fix typos for word ZooKeeper from ZooKeeeper Reviewers: kezhuw Author: rahulonGH Closes #2281 from rahulonGH/rahulkumar/fixing-typo --- .../org/apache/zookeeper/inspector/manager/ZooInspectorManager.java | 4 ++-- zookeeper-docs/src/main/resources/markdown/zookeeperProgrammers.md | 6 +++--- .../src/test/java/org/apache/zookeeper/ZooKeeperTest.java | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/zookeeper-contrib/zookeeper-contrib-zooinspector/src/main/java/org/apache/zookeeper/inspector/manager/ZooInspectorManager.java b/zookeeper-contrib/zookeeper-contrib-zooinspector/src/main/java/org/apache/zookeeper/inspector/manager/ZooInspectorManager.java index 030b7d2ee..9e89adf34 100644 --- a/zookeeper-contrib/zookeeper-contrib-zooinspector/src/main/java/org/apache/zookeeper/inspector/manager/ZooInspectorManager.java +++ b/zookeeper-contrib/zookeeper-contrib-zooinspector/src/main/java/org/apache/zookeeper/inspector/manager/ZooInspectorManager.java @@ -118,13 +118,13 @@ public void setDefaultNodeViewerConfiguration( /** * @param connectionProps * - the connection properties last used to connect to the - * zookeeeper instance + * zookeeper instance */ public void setLastConnectionProps(Properties connectionProps); /** * @return last connection Properties - the connection properties last used - * to connect to the zookeeeper instance + * to connect to the zookeeper instance */ public Properties getLastConnectionProps(); diff --git a/zookeeper-docs/src/main/resources/markdown/zookeeperProgrammers.md b/zookeeper-docs/src/main/resources/markdown/zookeeperProgrammers.md index 79aa0123a..92fbe40cf 100644 --- a/zookeeper-docs/src/main/resources/markdown/zookeeperProgrammers.md +++ b/zookeeper-docs/src/main/resources/markdown/zookeeperProgrammers.md @@ -837,7 +837,7 @@ on nodes that exist and the client must have READ permission otherwise #### Builtin ACL Schemes -ZooKeeeper has the following built in schemes: +ZooKeeper has the following built in schemes: * **world** has a single id, _anyone_, that represents @@ -1106,7 +1106,7 @@ _digest_. Additional plugins can adding using system properties. At startup the ZooKeeper server will look for system properties that start with "zookeeper.authProvider." and interpret the value of those properties as the class name of an authentication plugin. These properties can be set using the -_-Dzookeeeper.authProvider.X=com.f.MyAuth_ or adding entries such as +_-Dzookeeper.authProvider.X=com.f.MyAuth_ or adding entries such as the following in the server configuration file: @@ -1115,7 +1115,7 @@ the following in the server configuration file: Care should be taking to ensure that the suffix on the property is unique. If there are -duplicates such as _-Dzookeeeper.authProvider.X=com.f.MyAuth -Dzookeeper.authProvider.X=com.f.MyAuth2_, +duplicates such as _-Dzookeeper.authProvider.X=com.f.MyAuth -Dzookeeper.authProvider.X=com.f.MyAuth2_, only one will be used. Also all servers must have the same plugins defined, otherwise clients using the authentication schemes provided by the plugins will have problems connecting to some servers. diff --git a/zookeeper-server/src/test/java/org/apache/zookeeper/ZooKeeperTest.java b/zookeeper-server/src/test/java/org/apache/zookeeper/ZooKeeperTest.java index 10b116884..973e8b75f 100644 --- a/zookeeper-server/src/test/java/org/apache/zookeeper/ZooKeeperTest.java +++ b/zookeeper-server/src/test/java/org/apache/zookeeper/ZooKeeperTest.java @@ -801,7 +801,7 @@ public void testWaitForConnection() throws Exception { } long endTime = System.currentTimeMillis(); assertTrue(endTime - startTime >= timeout, - "ZooKeeeperMain does not wait until the specified timeout"); + "ZooKeeperMain does not wait until the specified timeout"); }