()
| 83 | } |
| 84 | |
| 85 | func (sto *s3Storage) String() string { |
| 86 | if sto.dirPrefix != "" { |
| 87 | return fmt.Sprintf("\"S3\" blob storage at host %q, bucket %q, directory %q", sto.hostname, sto.bucket, sto.dirPrefix) |
| 88 | } |
| 89 | return fmt.Sprintf("\"S3\" blob storage at host %q, bucket %q", sto.hostname, sto.bucket) |
| 90 | } |
| 91 | |
| 92 | func newFromConfig(l blobserver.Loader, config jsonconfig.Obj) (blobserver.Storage, error) { |
| 93 | return newFromConfigWithTransport(l, config, nil) |
no outgoing calls