mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-06 17:18:35 +08:00
Allow empty AK/SK for minio cfg (#21815)
Signed-off-by: Congqi Xia <congqi.xia@zilliz.com>
This commit is contained in:
parent
5986106037
commit
54ec22e879
@ -604,14 +604,14 @@ func (p *MinioConfig) Init(base *BaseTable) {
|
||||
p.AccessKeyID = ParamItem{
|
||||
Key: "minio.accessKeyID",
|
||||
Version: "2.0.0",
|
||||
PanicIfEmpty: true,
|
||||
PanicIfEmpty: false, // tmp fix, need to be conditional
|
||||
}
|
||||
p.AccessKeyID.Init(base.mgr)
|
||||
|
||||
p.SecretAccessKey = ParamItem{
|
||||
Key: "minio.secretAccessKey",
|
||||
Version: "2.0.0",
|
||||
PanicIfEmpty: true,
|
||||
PanicIfEmpty: false, // tmp fix, need to be conditional
|
||||
}
|
||||
p.SecretAccessKey.Init(base.mgr)
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user