Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
folbricht committed Apr 30, 2024
1 parent 2cd76a5 commit 39cf9dc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ Available configuration values:
- `timeout` - Time limit for chunk read or write operation in nanoseconds. Default: 1 minute. If set to a negative value, timeout is infinite.
- `error-retry` - Number of times to retry failed chunk requests. Default: 0.
- `error-retry-base-interval` - Number of nanoseconds to wait before first retry attempt. Retry attempt number N for the same request will wait N times this interval. Default: 0.
- `client-cert` - Cerificate file to be used for stores where the server requires mutual SSL.
- `client-cert` - Certificate file to be used for stores where the server requires mutual SSL.
- `client-key` - Key file to be used for stores where the server requires mutual SSL.
- `ca-cert` - Certificate file containing trusted certs or CAs.
- `trust-insecure` - Trust any certificate presented by the server.
Expand Down
2 changes: 1 addition & 1 deletion cmd/desync/store.go
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ func storeFromLocation(location string, cmdOpt cmdStoreOptions) (desync.Store, e
lookup = minio.BucketLookupPath
case "", "auto":
default:
return nil, fmt.Errorf("unknown S3 bucket lookup type: %q", s)
return nil, fmt.Errorf("unknown S3 bucket lookup type: %q", ls)
}
s, err = desync.NewS3Store(loc, s3Creds, region, opt, lookup)
if err != nil {
Expand Down

0 comments on commit 39cf9dc

Please sign in to comment.