Skip to content

Commit 433e7b4

Browse files
committed
cos update
1 parent 992f76d commit 433e7b4

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

internal/common/cos.go

+2-3
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,8 @@ import (
44
"context"
55
"errors"
66
"fmt"
7-
"open_im_sdk/pkg/log"
8-
97
"open_im_sdk/pkg/constant"
8+
"open_im_sdk/pkg/log"
109

1110
"github.com/tencentyun/cos-go-sdk-v5"
1211
"math/rand"
@@ -78,10 +77,10 @@ func (c *COS) getNewFileNameAndContentType(filePath string, fileType string) (st
7877

7978
func (c *COS) uploadObj(filePath string, fileType string, onProgressFun func(int)) (string, string, error) {
8079
COSResp, err := c.tencentCOSCredentials()
81-
log.Info("upload ", COSResp.Credentials.SessionToken, "bucket ", COSResp.Credentials.TmpSecretID)
8280
if err != nil {
8381
return "", "", utils.Wrap(err, "")
8482
}
83+
log.Info("upload ", COSResp.Credentials.SessionToken, "bucket ", COSResp.Credentials.TmpSecretID)
8584
dir := fmt.Sprintf("https://%s.cos.%s.myqcloud.com", COSResp.Bucket, COSResp.Region)
8685
u, _ := url.Parse(dir)
8786
b := &cos.BaseURL{BucketURL: u}

0 commit comments

Comments
 (0)