Skip to content

Commit d220082

Browse files
authored
using minio live probe to check if the minio is running (#5972)
Signed-off-by: alanprot <[email protected]>
1 parent 5a575ea commit d220082

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

integration/e2e/db/db.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ func newMinio(port int, envVars map[string]string, bktNames ...string) *e2e.HTTP
3333
images.Minio,
3434
// Create the "cortex" bucket before starting minio
3535
e2e.NewCommandWithoutEntrypoint("sh", "-c", strings.Join(commands, " && ")),
36-
e2e.NewHTTPReadinessProbe(port, "/minio/health/ready", 200, 200),
36+
e2e.NewHTTPReadinessProbe(port, "/minio/health/live", 200, 200),
3737
port,
3838
)
3939
envVars["MINIO_ACCESS_KEY"] = MinioAccessKey

0 commit comments

Comments
 (0)