From b3899f559c75601977293f7ffec069805b31111e Mon Sep 17 00:00:00 2001 From: withchao <48119764+withchao@users.noreply.github.com> Date: Wed, 16 Aug 2023 18:43:10 +0800 Subject: [PATCH] fix: minio sign cndpoint crash caused by unconfigured (#881) * fix: create group type limit * fix: group notification * fix: group notification * fix: group notification * chore: group member hash * chore: group member hash * chore: group member hash * chore: group member hash * test: log * test: log * test: log * test: log * test: log * sync: hash code * sync: hash code * sync: hash code * test: log * test: log * test: log * test: log * test: log * fix: time stamp * fix: minio sign endpoint opts --- pkg/common/db/s3/minio/minio.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/common/db/s3/minio/minio.go b/pkg/common/db/s3/minio/minio.go index 9137f7b75..1f848d1b4 100644 --- a/pkg/common/db/s3/minio/minio.go +++ b/pkg/common/db/s3/minio/minio.go @@ -84,6 +84,7 @@ func NewMinio() (s3.Interface, error) { init: false, } if conf.SignEndpoint == "" || conf.SignEndpoint == conf.Endpoint { + m.opts = opts m.sign = m.core.Client } else { su, err := url.Parse(conf.SignEndpoint)