Ver a proveniência

rmv s3-part-size from NewS3Storage call.

tags/v1.1.3
n8225 há 4 anos
ascendente
cometimento
6a956a445f
1 ficheiros alterados com 1 adições e 1 eliminações
  1. +1
    -1
      cmd/cmd.go

+ 1
- 1
cmd/cmd.go Ver ficheiro

@@ -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))


Carregando…
Cancelar
Guardar