Browse Source

rmv s3-part-size from NewS3Storage call.

tags/v1.1.3
n8225 4 years ago
parent
commit
6a956a445f
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      cmd/cmd.go

+ 1
- 1
cmd/cmd.go View File

@@ -343,7 +343,7 @@ func New() *Cmd {
panic("secret-key not set.")
} else if bucket := c.String("bucket"); bucket == "" {
panic("bucket not set.")
} else if storage, err := server.NewS3Storage(accessKey, secretKey, bucket, c.String("s3-region"), c.String("s3-endpoint"), logger, c.Bool("s3-no-multipart"), c.Int64("s3-part-size"), c.Bool("s3-path-style")); err != nil {
} else if storage, err := server.NewS3Storage(accessKey, secretKey, bucket, c.String("s3-region"), c.String("s3-endpoint"), logger, c.Bool("s3-no-multipart"), c.Bool("s3-path-style")); err != nil {
panic(err)
} else {
options = append(options, server.UseStorage(storage))


Loading…
Cancel
Save