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

roryqi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-uniffle.git


The following commit(s) were added to refs/heads/master by this push:
     new 2fc3c26  Correct the config description and fix typo (#19)
2fc3c26 is described below

commit 2fc3c263617ef9b3f8dccb67ddd42a0804487a8d
Author: Junfan Zhang <[email protected]>
AuthorDate: Mon Jul 4 23:32:48 2022 +0800

    Correct the config description and fix typo (#19)
    
    ### What changes were proposed in this pull request?
    1. Correct the config description
    2. Fix typo
    
    ### Why are the changes needed?
    Typo
    
    ### Does this PR introduce _any_ user-facing change?
    No
    
    ### How was this patch tested?
    No need.
---
 .../main/java/org/apache/uniffle/coordinator/CoordinatorConf.java   | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git 
a/coordinator/src/main/java/org/apache/uniffle/coordinator/CoordinatorConf.java 
b/coordinator/src/main/java/org/apache/uniffle/coordinator/CoordinatorConf.java
index facc52b..bb897d4 100644
--- 
a/coordinator/src/main/java/org/apache/uniffle/coordinator/CoordinatorConf.java
+++ 
b/coordinator/src/main/java/org/apache/uniffle/coordinator/CoordinatorConf.java
@@ -90,7 +90,7 @@ public class CoordinatorConf extends RssBaseConf {
       .intType()
       .checkValue(ConfigUtils.positiveIntegerValidator2, "load checker 
serverNum threshold must be positive")
       .noDefaultValue()
-      .withDescription("Accessed candidates file path");
+      .withDescription("The minimal required number of healthy shuffle servers 
when being accessed by client");
   public static final ConfigOption<Boolean> 
COORDINATOR_DYNAMIC_CLIENT_CONF_ENABLED = ConfigOptions
       .key("rss.coordinator.dynamicClientConf.enabled")
       .booleanType()
@@ -105,7 +105,7 @@ public class CoordinatorConf extends RssBaseConf {
           .key("rss.coordinator.remote.storage.path")
           .stringType()
           .noDefaultValue()
-          .withDescription("all supported remote paths for RSS cluster, 
seperated by ','");
+          .withDescription("all supported remote paths for RSS cluster, 
separated by ','");
   public static final ConfigOption<Integer> 
COORDINATOR_DYNAMIC_CLIENT_CONF_UPDATE_INTERVAL_SEC = ConfigOptions
       .key("rss.coordinator.dynamicClientConf.updateIntervalSec")
       .intType()
@@ -116,7 +116,7 @@ public class CoordinatorConf extends RssBaseConf {
       .key("rss.coordinator.remote.storage.cluster.conf")
       .stringType()
       .noDefaultValue()
-      .withDescription("Remote Storage Cluster related conf with format 
$clusterId,$key=$value, sperated by ';'");
+      .withDescription("Remote Storage Cluster related conf with format 
$clusterId,$key=$value, separated by ';'");
 
 
   public CoordinatorConf() {

Reply via email to