diff options
Diffstat (limited to 'weed/remote_storage/s3/aliyun.go')
| -rw-r--r-- | weed/remote_storage/s3/aliyun.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/weed/remote_storage/s3/aliyun.go b/weed/remote_storage/s3/aliyun.go index 3a681369a..567c74299 100644 --- a/weed/remote_storage/s3/aliyun.go +++ b/weed/remote_storage/s3/aliyun.go @@ -18,6 +18,10 @@ func init() { type AliyunRemoteStorageMaker struct{} +func (s AliyunRemoteStorageMaker) HasBucket() bool { + return true +} + func (s AliyunRemoteStorageMaker) Make(conf *remote_pb.RemoteConf) (remote_storage.RemoteStorageClient, error) { client := &s3RemoteStorageClient{ conf: conf, |
