diff --git a/pom.xml b/pom.xml
index 3e811ac4..c3be636d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -61,23 +61,22 @@
4.5.14
3.13.0
5.10.0
- 1.19.0
+ 1.19.1
3.24.2
1.0.4
- 5.5.0
+ 5.6.0
2.0.9
1.4.11
5.14.0
- 2.15.2
- 10.15
+ 2.15.3
+ 11.4
5.15.0
2.15.2
- 3.24.3
- 1.58.0
- 1.58.0
- 1.58.0
+ 3.24.4
+ 1.59.0
+ 1.59.0
+ 1.59.0
6.0.53
- 0.1.0
diff --git a/src/test/java/io/weaviate/integration/client/batch/ClientBatchGrpcCreateTest.java b/src/test/java/io/weaviate/integration/client/batch/ClientBatchGrpcCreateTest.java
index 045c26e5..43165b29 100644
--- a/src/test/java/io/weaviate/integration/client/batch/ClientBatchGrpcCreateTest.java
+++ b/src/test/java/io/weaviate/integration/client/batch/ClientBatchGrpcCreateTest.java
@@ -23,6 +23,7 @@ public class ClientBatchGrpcCreateTest {
private static String host;
private static Integer port;
+ private static String grpcHost;
private static Integer grpcPort;
@ClassRule
@@ -36,6 +37,7 @@ public class ClientBatchGrpcCreateTest {
public void before() {
host = compose.getServiceHost("weaviate_1", 8080);
port = compose.getServicePort("weaviate_1", 8080);
+ grpcHost = compose.getServiceHost("weaviate_1", 50051);
grpcPort = compose.getServicePort("weaviate_1", 50051);
}
@@ -96,7 +98,7 @@ private void testCreateBatchWithNestedAndNestArrayObject(Boolean useGRPC) {
private void testCreateBatch(Boolean useGRPC, String className, List properties, WeaviateObject[] objects) {
Config config = new Config("http", host + ":" + port);
config.setUseGRPC(useGRPC);
- config.setGrpcAddress(host + ":" + grpcPort);
+ config.setGrpcAddress(grpcHost + ":" + grpcPort);
WeaviateClient client = new WeaviateClient(config);
// create schema
Result createResult = client.schema().classCreator()