This is an automated email from the ASF dual-hosted git repository.
shuber pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/unomi.git
The following commit(s) were added to refs/heads/master by this push:
new c05a01b Fix integration tests failing on machine with low disk space
c05a01b is described below
commit c05a01bead9df41db3d23ef3aebf3f5ecfaa24ce
Author: Serge Huber <[email protected]>
AuthorDate: Thu Apr 16 18:26:55 2020 +0200
Fix integration tests failing on machine with low disk space
---
itests/pom.xml | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/itests/pom.xml b/itests/pom.xml
index aa7d2ca..28effcb 100644
--- a/itests/pom.xml
+++ b/itests/pom.xml
@@ -148,7 +148,7 @@
<groupId>com.github.alexcojocaru</groupId>
<artifactId>elasticsearch-maven-plugin</artifactId>
<!-- REPLACE THE FOLLOWING WITH THE PLUGIN VERSION YOU NEED -->
- <version>6.13</version>
+ <version>6.16</version>
<configuration>
<clusterName>contextElasticSearchITests</clusterName>
<transportPort>9500</transportPort>
@@ -156,6 +156,11 @@
<version>${elasticsearch.version}</version>
<autoCreateIndex>true</autoCreateIndex>
<timeout>120</timeout>
+ <instanceSettings>
+ <properties>
+
<cluster.routing.allocation.disk.threshold_enabled>false</cluster.routing.allocation.disk.threshold_enabled>
+ </properties>
+ </instanceSettings>
</configuration>
<executions>
<!--