diff options
Diffstat (limited to 'weed/remote_storage/s3/filebase.go')
| -rw-r--r-- | weed/remote_storage/s3/filebase.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/weed/remote_storage/s3/filebase.go b/weed/remote_storage/s3/filebase.go index fd5200f1a..23787e0e2 100644 --- a/weed/remote_storage/s3/filebase.go +++ b/weed/remote_storage/s3/filebase.go @@ -25,7 +25,8 @@ func (s FilebaseRemoteStorageMaker) HasBucket() bool { func (s FilebaseRemoteStorageMaker) Make(conf *remote_pb.RemoteConf) (remote_storage.RemoteStorageClient, error) { client := &s3RemoteStorageClient{ - conf: conf, + supportTagging: true, + conf: conf, } accessKey := util.Nvl(conf.FilebaseAccessKey, os.Getenv("AWS_ACCESS_KEY_ID")) secretKey := util.Nvl(conf.FilebaseSecretKey, os.Getenv("AWS_SECRET_ACCESS_KEY")) |
