You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@helix.apache.org by hu...@apache.org on 2020/08/14 18:13:57 UTC

[helix] 02/12: Fix string

This is an automated email from the ASF dual-hosted git repository.

hulee pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/helix.git

commit a686d58e426eeebf0e6b0c790c8de71c7c44a32e
Author: Hunter Lee <hu...@linkedin.com>
AuthorDate: Mon Jul 20 23:55:16 2020 -0700

    Fix string
---
 .../apache/helix/zookeeper/constant/RoutingDataReaderType.java    | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/zookeeper-api/src/main/java/org/apache/helix/zookeeper/constant/RoutingDataReaderType.java b/zookeeper-api/src/main/java/org/apache/helix/zookeeper/constant/RoutingDataReaderType.java
index 85b8194..aedef36 100644
--- a/zookeeper-api/src/main/java/org/apache/helix/zookeeper/constant/RoutingDataReaderType.java
+++ b/zookeeper-api/src/main/java/org/apache/helix/zookeeper/constant/RoutingDataReaderType.java
@@ -19,10 +19,14 @@ package org.apache.helix.zookeeper.constant;
  * under the License.
  */
 
+/**
+ * RoutingDataReaderType is an enum that designates the reader type and the class name that can be
+ * used to create an instance of RoutingDataReader by reflection.
+ */
 public enum RoutingDataReaderType {
   HTTP("org.apache.helix.zookeeper.routing.HttpRoutingDataReader"),
-  ZK("ZkRoutingDataReader"),
-  HTTP_ZK_FALLBACK("HttpZkFallbackRoutingDataReader");
+  ZK("org.apache.helix.zookeeper.routing.ZkRoutingDataReader"),
+  HTTP_ZK_FALLBACK("org.apache.helix.zookeeper.routing.HttpZkFallbackRoutingDataReader");
 
   private final String className;