From 959e03cccf3198c50b79536a911d916dd3a2e4c0 Mon Sep 17 00:00:00 2001 From: Jian Qiu Date: Mon, 25 May 2026 10:04:06 +0800 Subject: [PATCH] fix: disable s3 direct download default (#24887) Co-authored-by: Qiu Jian --- pkg/image/options/options.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/image/options/options.go b/pkg/image/options/options.go index 040425fb9c..5c7bad6c62 100644 --- a/pkg/image/options/options.go +++ b/pkg/image/options/options.go @@ -56,7 +56,7 @@ type SImageOptions struct { S3UploadPartSizeMb int64 `help:"s3 upload part size in MB, default to 50MB" default:"50"` S3UploadParallel int `help:"s3 upload parallel count" default:"4"` - S3DirectDownload bool `help:"enable s3 direct download" default:"true"` + S3DirectDownload bool `help:"enable s3 direct download" default:"false"` ImageStreamWorkerCount int `help:"Image stream worker count" default:"10"`