Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas-HuWei committed Jul 11, 2024
1 parent c74989e commit 3e58b02
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,11 +83,11 @@ public class MilvusIT extends TestSuiteBase implements TestResource {
@Override
public void startUp() throws Exception {
this.container = new MilvusContainer(MILVUS_IMAGE);
this.container.setNetwork(NETWORK);
log.info("Milvus host is {}", container.getEndpoint());
Startables.deepStart(Stream.of(this.container)).join();
log.info("Milvus container started");
Awaitility.given().ignoreExceptions().await().atMost(720L, TimeUnit.SECONDS);
this.container.setNetwork(NETWORK);
log.info("Milvus container started");
log.info("Milvus host is {}", container.getEndpoint());
this.initMilvus();
this.initSourceData();
}
Expand Down

0 comments on commit 3e58b02

Please sign in to comment.