We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8c357a commit 6bc7cd0Copy full SHA for 6bc7cd0
src/Testcontainers.Milvus/MilvusBuilder.cs
@@ -71,8 +71,7 @@ protected override MilvusBuilder Init()
71
.WithEnvironment("ETCD_CONFIG_PATH", MilvusEtcdConfigFilePath)
72
.WithEnvironment("ETCD_DATA_DIR", "/var/lib/milvus/etcd")
73
.WithResourceMapping(EtcdConfig, MilvusEtcdConfigFilePath)
74
- .WithWaitStrategy(Wait.ForUnixContainer().UntilHttpRequestIsSucceeded(request =>
75
- request.ForPort(MilvusManagementPort).ForPath("/healthz")))
+ .WithWaitStrategy(Wait.ForUnixContainer().UntilContainerIsHealthy())
76
.WithCreateParameterModifier(parameterModifier =>
77
parameterModifier.Healthcheck = Healthcheck.Instance);
78
}
0 commit comments