aboutsummaryrefslogtreecommitdiff
path: root/weed/remote_storage/s3/storj.go
diff options
context:
space:
mode:
Diffstat (limited to 'weed/remote_storage/s3/storj.go')
-rw-r--r--weed/remote_storage/s3/storj.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/weed/remote_storage/s3/storj.go b/weed/remote_storage/s3/storj.go
index 9e902515a..2de7ad357 100644
--- a/weed/remote_storage/s3/storj.go
+++ b/weed/remote_storage/s3/storj.go
@@ -24,7 +24,8 @@ func (s StorjRemoteStorageMaker) HasBucket() bool {
func (s StorjRemoteStorageMaker) Make(conf *remote_pb.RemoteConf) (remote_storage.RemoteStorageClient, error) {
client := &s3RemoteStorageClient{
- conf: conf,
+ supportTagging: true,
+ conf: conf,
}
accessKey := util.Nvl(conf.StorjAccessKey, os.Getenv("AWS_ACCESS_KEY_ID"))
secretKey := util.Nvl(conf.StorjSecretKey, os.Getenv("AWS_SECRET_ACCESS_KEY"))