Skip to content

Commit

Permalink
Feature/make load active listening pipe dir settable (#13674)
Browse files Browse the repository at this point in the history
* fix: Hopefully fixed the build of the cpp-example on windows systems

* fix: Increase the timeout even more to finally make the build succeed.

* fix: Fix the build.

* fix: Make the loadActiveListeningPipeDir (Needed for running IoTDB in embedded mode)
  • Loading branch information
chrisdutz authored Oct 3, 2024
1 parent 8efd9ef commit 195949d
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4060,6 +4060,10 @@ public String getLoadActiveListeningPipeDir() {
return loadActiveListeningPipeDir;
}

public void setLoadActiveListeningPipeDir(String loadActiveListeningPipeDir) {
this.loadActiveListeningPipeDir = loadActiveListeningPipeDir;
}

public String[] getLoadActiveListeningDirs() {
return (Objects.isNull(this.loadActiveListeningDirs)
|| this.loadActiveListeningDirs.length == 0)
Expand Down

0 comments on commit 195949d

Please sign in to comment.