Skip to content

Commit

Permalink
Merge pull request #28401 from loicmathieu/elastic-devservices-heap-size
Browse files Browse the repository at this point in the history
Bump testcontainers to 1.17.5 and fix Elasticsearch devservices min heap
  • Loading branch information
yrodiere authored Oct 5, 2022
2 parents caee2d8 + f9415f5 commit fabf63b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bom/application/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@
<apicurio-registry.version>2.3.1.Final</apicurio-registry.version>
<apicurio-common-rest-client.version>0.1.13.Final</apicurio-common-rest-client.version> <!-- must be the version Apicurio Registry uses -->
<jacoco.version>0.8.8</jacoco.version>
<testcontainers.version>1.17.3</testcontainers.version> <!-- Make sure to also update docker-java.version to match its needs -->
<testcontainers.version>1.17.5</testcontainers.version> <!-- Make sure to also update docker-java.version to match its needs -->
<docker-java.version>3.2.13</docker-java.version> <!-- must be the version Testcontainers use -->
<aesh-readline.version>2.2</aesh-readline.version>
<aesh.version>2.6</aesh.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ public class ElasticsearchDevServicesBuildTimeConfig {

/**
* The value for the ES_JAVA_OPTS env variable.
* Defaults to setting the heap to 1GB.
* Defaults to setting the heap to 512MB min - 1GB max.
*/
@ConfigItem(defaultValue = "-Xmx1g")
@ConfigItem(defaultValue = "-Xms512m -Xmx1g")
public String javaOpts;

/**
Expand Down

0 comments on commit fabf63b

Please sign in to comment.