You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by qi...@apache.org on 2020/11/22 04:19:20 UTC

[iotdb] branch master updated: Fix the path of client in contribute guide (#2091)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 168ac8c  Fix the path of client in contribute guide (#2091)
168ac8c is described below

commit 168ac8c1c1301aad76ac91cebbb3dca71e922817
Author: Benedict Jin <as...@apache.org>
AuthorDate: Sun Nov 22 12:19:11 2020 +0800

    Fix the path of client in contribute guide (#2091)
---
 docs/Development/ContributeGuide.md    | 2 +-
 docs/zh/Development/ContributeGuide.md | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/Development/ContributeGuide.md b/docs/Development/ContributeGuide.md
index 06f2da6..04369c5 100644
--- a/docs/Development/ContributeGuide.md
+++ b/docs/Development/ContributeGuide.md
@@ -102,7 +102,7 @@ You can go to jira to pick up the existing issue or create your own issue and ge
 Recommended Use Intellij idea. ```mvn clean package -DskipTests``` After putting ```antlr/target/generated-sources/antlr4``` and ```thrift/target/generated-sources/thrift``` marked as ```Source Root```。 
 
 * Server main function:```server/src/main/java/org/apache/iotdb/db/service/IoTDB```,Can be started in debug mode
-* Client:```client/src/main/java/org/apache/iotdb/client/```,Use Clinet for linux and WinClint for windows, you can start directly, need the parameter "-h 127.0.0.1 -p 6667 -u root -pw root"
+* Client:```cli/src/main/java/org/apache/iotdb/cli/```,Use Clinet for linux and WinClint for windows, you can start directly, need the parameter "-h 127.0.0.1 -p 6667 -u root -pw root"
 * Server rpc implementation (mainly used for client and server communication, generally start interruption point here):```server/src/main/java/org/apache/iotdb/db/service/TSServiceImpl```
   * all jdbc statements:executeStatement(TSExecuteStatementReq req)
   * jdbc query:executeQueryStatement(TSExecuteStatementReq req)	
diff --git a/docs/zh/Development/ContributeGuide.md b/docs/zh/Development/ContributeGuide.md
index a978393..6b1d910 100644
--- a/docs/zh/Development/ContributeGuide.md
+++ b/docs/zh/Development/ContributeGuide.md
@@ -118,7 +118,7 @@ import -> Maven -> Existing Maven Projects
 ## 调试代码
 
 * 服务器主函数:```server/src/main/java/org/apache/iotdb/db/service/IoTDB```,可以debug模式启动
-* 客户端:```client/src/main/java/org/apache/iotdb/client/```,linux 用 Clinet,windows 用 WinClint,可以直接启动,需要参数"-h 127.0.0.1 -p 6667 -u root -pw root"
+* 客户端:```cli/src/main/java/org/apache/iotdb/cli/```,linux 用 Clinet,windows 用 WinClint,可以直接启动,需要参数"-h 127.0.0.1 -p 6667 -u root -pw root"
 * 服务器的 rpc 实现(主要用来客户端和服务器通信,一般在这里开始打断点):```server/src/main/java/org/apache/iotdb/db/service/TSServiceImpl```
 	* jdbc所有语句:executeStatement(TSExecuteStatementReq req)
 	* jdbc查询语句:executeQueryStatement(TSExecuteStatementReq req)