diff options
| author | Chris Lu <chris.lu@gmail.com> | 2021-08-29 18:41:29 -0700 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2021-08-29 18:41:29 -0700 |
| commit | 001a472057f01b3ac2d3edb59b3d5fb0a141cddd (patch) | |
| tree | b9bac6f68ab44cb2d0fee5df0db69ba589ff69b0 /weed/remote_storage/s3/tencent.go | |
| parent | 05d27741179b199608d0c5c5373bf3c8939c1697 (diff) | |
| download | seaweedfs-001a472057f01b3ac2d3edb59b3d5fb0a141cddd.tar.xz seaweedfs-001a472057f01b3ac2d3edb59b3d5fb0a141cddd.zip | |
cloud mount: remote storage support hdfs
Diffstat (limited to 'weed/remote_storage/s3/tencent.go')
| -rw-r--r-- | weed/remote_storage/s3/tencent.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/weed/remote_storage/s3/tencent.go b/weed/remote_storage/s3/tencent.go index e2591ca8c..9df72a7e2 100644 --- a/weed/remote_storage/s3/tencent.go +++ b/weed/remote_storage/s3/tencent.go @@ -18,6 +18,10 @@ func init() { type TencentRemoteStorageMaker struct{} +func (s TencentRemoteStorageMaker) HasBucket() bool { + return true +} + func (s TencentRemoteStorageMaker) Make(conf *remote_pb.RemoteConf) (remote_storage.RemoteStorageClient, error) { client := &s3RemoteStorageClient{ conf: conf, |
