未验证 提交 54ec22e8 编写于 作者: C congqixia 提交者: GitHub

Allow empty AK/SK for minio cfg (#21815)

Signed-off-by: NCongqi Xia <congqi.xia@zilliz.com>
上级 59861060
......@@ -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)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册