Skip to content

Commit d5cbddd

Browse files
committed
Testing
1 parent 9c70955 commit d5cbddd

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Changelog for this connector can be found [here](https://docs.confluent.io/kafka
66
kafka-connect-elasticsearch is a [Kafka Connector](http://kafka.apache.org/documentation.html#connect)
77
for copying data between Kafka and Elasticsearch.
88

9+
910
# Development
1011

1112
To build a development version you'll need a recent version of Kafka as well as a set of upstream Confluent projects, which you'll have to build from their appropriate snapshot branch. See the [FAQ](https://github.com/confluentinc/kafka-connect-elasticsearch/wiki/FAQ) for guidance on this process.

pom.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
<hamcrest.version>1.3</hamcrest.version>
4343
<mockito.version>2.28.2</mockito.version>
4444
<gson.version>2.8.6</gson.version>
45-
<test.containers.version>1.15.3</test.containers.version>
45+
<test.containers.version>1.20.4</test.containers.version>
4646
<kafka.connect.maven.plugin.version>0.11.1</kafka.connect.maven.plugin.version>
4747
<maven.release.plugin.version>2.5.3</maven.release.plugin.version>
4848
<hadoop.version>3.3.0</hadoop.version>
@@ -479,7 +479,6 @@
479479
<configuration>
480480
<compilerArgs>
481481
<arg>-Xlint:all,-try</arg>
482-
<arg>-Werror</arg>
483482
</compilerArgs>
484483
</configuration>
485484
</plugin>

src/test/java/io/confluent/connect/elasticsearch/helper/ElasticsearchContainer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ public static ElasticsearchContainer withESVersion(String ESVersion) {
151151
public ElasticsearchContainer(String imageName) {
152152
super(imageName);
153153
this.imageName = imageName;
154-
withSharedMemorySize(TWO_GIGABYTES);
154+
withSharedMemorySize(4*TWO_GIGABYTES);
155155
withLogConsumer(this::containerLog);
156156
}
157157

0 commit comments

Comments
 (0)