You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by ro...@apache.org on 2023/03/29 12:39:42 UTC

[iotdb] branch master updated: [IOTDB-5743] Fix: pipe plugin directory creates at the shell running directory (#9482)

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

rong 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 0fd9ebe7dc [IOTDB-5743] Fix: pipe plugin directory creates at the shell running directory (#9482)
0fd9ebe7dc is described below

commit 0fd9ebe7dcccff031b93477f016cd7bcfaf824ea
Author: Caideyipi <87...@users.noreply.github.com>
AuthorDate: Wed Mar 29 20:39:33 2023 +0800

    [IOTDB-5743] Fix: pipe plugin directory creates at the shell running directory (#9482)
---
 compile-tools/README.md                                        | 2 +-
 server/src/main/java/org/apache/iotdb/db/conf/IoTDBConfig.java | 2 ++
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/compile-tools/README.md b/compile-tools/README.md
index 0a92fa87d8..9288216e31 100644
--- a/compile-tools/README.md
+++ b/compile-tools/README.md
@@ -79,7 +79,7 @@ If Openssl header files can not be found when building Thrift, please add option
 
 ### Linux
 
-#### Additional requrirements
+#### Additional requirements
 
 * g++
 
diff --git a/server/src/main/java/org/apache/iotdb/db/conf/IoTDBConfig.java b/server/src/main/java/org/apache/iotdb/db/conf/IoTDBConfig.java
index f4ea5ba157..b0f97c2288 100644
--- a/server/src/main/java/org/apache/iotdb/db/conf/IoTDBConfig.java
+++ b/server/src/main/java/org/apache/iotdb/db/conf/IoTDBConfig.java
@@ -1152,6 +1152,8 @@ public class IoTDBConfig {
     udfTemporaryLibDir = addDataHomeDir(udfTemporaryLibDir);
     triggerDir = addDataHomeDir(triggerDir);
     triggerTemporaryLibDir = addDataHomeDir(triggerTemporaryLibDir);
+    pipeDir = addDataHomeDir(pipeDir);
+    pipeTemporaryLibDir = addDataHomeDir(pipeDir);
     mqttDir = addDataHomeDir(mqttDir);
 
     extPipeDir = addDataHomeDir(extPipeDir);