diff options
Diffstat (limited to 'weed/remote_storage/s3/contabo.go')
| -rw-r--r-- | weed/remote_storage/s3/contabo.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/weed/remote_storage/s3/contabo.go b/weed/remote_storage/s3/contabo.go index 4d8528407..2e85422dc 100644 --- a/weed/remote_storage/s3/contabo.go +++ b/weed/remote_storage/s3/contabo.go @@ -25,7 +25,8 @@ func (s ContaboRemoteStorageMaker) HasBucket() bool { func (s ContaboRemoteStorageMaker) Make(conf *remote_pb.RemoteConf) (remote_storage.RemoteStorageClient, error) { client := &s3RemoteStorageClient{ - conf: conf, + supportTagging: true, + conf: conf, } accessKey := util.Nvl(conf.ContaboAccessKey, os.Getenv("ACCESS_KEY")) secretKey := util.Nvl(conf.ContaboSecretKey, os.Getenv("SECRET_KEY")) |
