diff --git a/pom.xml b/pom.xml
index e691617a..a20669ba 100644
--- a/pom.xml
+++ b/pom.xml
@@ -9,7 +9,7 @@
com.the-qa-company
qendpoint-parent
- 2.0.1
+ 2.1.0
pom
diff --git a/qendpoint-backend/pom.xml b/qendpoint-backend/pom.xml
index ffc2c04c..686d4906 100644
--- a/qendpoint-backend/pom.xml
+++ b/qendpoint-backend/pom.xml
@@ -4,7 +4,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4.0.0
qendpoint-backend
- 2.0.1
+ 2.1.0
jar
@@ -15,7 +15,7 @@
com.the-qa-company
qendpoint-parent
- 2.0.1
+ 2.1.0
diff --git a/qendpoint-cli/pom.xml b/qendpoint-cli/pom.xml
index 1318b8f8..cbc775e0 100644
--- a/qendpoint-cli/pom.xml
+++ b/qendpoint-cli/pom.xml
@@ -2,7 +2,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4.0.0
qendpoint-cli
- 2.0.1
+ 2.1.0
qendpoint package
Package of the qendpoint.
@@ -11,7 +11,7 @@
com.the-qa-company
qendpoint-parent
- 2.0.1
+ 2.1.0
diff --git a/qendpoint-core/pom.xml b/qendpoint-core/pom.xml
index 6a9db413..aa83badc 100644
--- a/qendpoint-core/pom.xml
+++ b/qendpoint-core/pom.xml
@@ -4,7 +4,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4.0.0
qendpoint-core
- 2.0.1
+ 2.1.0
jar
@@ -27,7 +27,7 @@
com.the-qa-company
qendpoint-parent
- 2.0.1
+ 2.1.0
diff --git a/qendpoint-core/src/main/java/com/the_qa_company/qendpoint/core/tools/HDTAutoIndexer.java b/qendpoint-core/src/main/java/com/the_qa_company/qendpoint/core/tools/HDTAutoIndexer.java
index 7b9181dd..31347930 100644
--- a/qendpoint-core/src/main/java/com/the_qa_company/qendpoint/core/tools/HDTAutoIndexer.java
+++ b/qendpoint-core/src/main/java/com/the_qa_company/qendpoint/core/tools/HDTAutoIndexer.java
@@ -11,6 +11,7 @@
import com.the_qa_company.qendpoint.core.util.StopWatch;
import com.the_qa_company.qendpoint.core.util.io.IOUtil;
import com.the_qa_company.qendpoint.core.util.listener.ColorTool;
+import com.the_qa_company.qendpoint.core.util.listener.MultiThreadListenerConsole;
import java.io.IOException;
import java.net.URI;
@@ -71,8 +72,10 @@ public void execute() throws IOException, InterruptedException {
}
boolean one = !IOUtil.isRemoteURL(path) && cfg.getBoolean(HDTOptionsKeys.AUTOINDEXER_RUN_ONLY_REMOTE, true);
- colorTool.warn("The path is local, only one iteration will be performed, use "
- + HDTOptionsKeys.AUTOINDEXER_RUN_ONLY_REMOTE + "=false to index it");
+ if (one) {
+ colorTool.warn("The path is local, only one iteration will be performed, use "
+ + HDTOptionsKeys.AUTOINDEXER_RUN_ONLY_REMOTE + "=false to index it");
+ }
HDTOptions spec = cfg.pushBottom();
Path outTmpDir = output.resolve("tmp_output");
@@ -92,6 +95,8 @@ public void execute() throws IOException, InterruptedException {
Path endIndex = output.resolve(hdtName);
Path tmpIndex = outTmpDir.resolve(hdtName);
Files.createDirectories(output);
+ MultiThreadListenerConsole console = !quiet ? new MultiThreadListenerConsole(color) : null;
+ colorTool.setConsole(console);
long currentId = 0;
while (true) {
diff --git a/qendpoint-store/pom.xml b/qendpoint-store/pom.xml
index b6845e7e..7450d780 100644
--- a/qendpoint-store/pom.xml
+++ b/qendpoint-store/pom.xml
@@ -3,7 +3,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4.0.0
qendpoint
- 2.0.1
+ 2.1.0
jar
@@ -13,7 +13,7 @@
com.the-qa-company
qendpoint-parent
- 2.0.1
+ 2.1.0
diff --git a/release/RELEASE.md b/release/RELEASE.md
index 6f0116fd..960d1175 100644
--- a/release/RELEASE.md
+++ b/release/RELEASE.md
@@ -1 +1,3 @@
-- deploy fixes
+- add indexhdtrepo command (#482)
+- allow predownload file (#480)
+
diff --git a/release/RELEASE.md_old b/release/RELEASE.md_old
index f0c1550c..60f0bc61 100644
--- a/release/RELEASE.md_old
+++ b/release/RELEASE.md_old
@@ -1,3 +1,6 @@
+## Version 2.0.1
+
+- deploy fixes
## Version 2.0.0
- reimplement #470 (#477)