mirror of https://github.com/milvus-io/milvus.git
Allow empty AK/SK for minio cfg (#21815)
Signed-off-by: Congqi Xia <congqi.xia@zilliz.com>pull/21821/head
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…
Reference in New Issue