Fix Milvus dependecy issue due to Boot 3.2 upgrade
This commit is contained in:
@@ -31,6 +31,27 @@
|
||||
<groupId>io.milvus</groupId>
|
||||
<artifactId>milvus-sdk-java</artifactId>
|
||||
<version>${milvus.version}</version>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<groupId>io.netty</groupId>
|
||||
<artifactId>netty-codec</artifactId>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
<groupId>io.netty</groupId>
|
||||
<artifactId>netty-codec-http2</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>io.netty</groupId>
|
||||
<artifactId>netty-codec</artifactId>
|
||||
<version>4.1.101.Final</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>io.netty</groupId>
|
||||
<artifactId>netty-codec-http2</artifactId>
|
||||
<version>4.1.100.Final</version>
|
||||
</dependency>
|
||||
|
||||
<!-- TESTING -->
|
||||
|
||||
@@ -300,6 +300,7 @@ public class MilvusVectorStoreIT {
|
||||
@Bean
|
||||
public MilvusServiceClient milvusClient() {
|
||||
return new MilvusServiceClient(ConnectParam.newBuilder()
|
||||
.withAuthorization("minioadmin", "minioadmin")
|
||||
.withHost(milvusContainer.getServiceHost("standalone", 19530))
|
||||
.withPort(milvusContainer.getServicePort("standalone", 19530))
|
||||
.build());
|
||||
|
||||
Reference in New Issue
Block a user