This commit is contained in:
withchao 2023-04-03 11:49:59 +08:00
parent ffecab72d8
commit a83b4fc5d8

View File

@ -45,7 +45,7 @@ func NewMinioInterface() (Interface, error) {
Region: conf.Location, Region: conf.Location,
ObjectLocking: conf.IsDistributedMod, ObjectLocking: conf.IsDistributedMod,
} }
if err := client.MakeBucket(ctx, conf.TempBucket, opt); err != nil { if err := client.MakeBucket(ctx, bucket, opt); err != nil {
return nil, fmt.Errorf("minio make bucket %s %w", bucket, err) return nil, fmt.Errorf("minio make bucket %s %w", bucket, err)
} }
} }