From ad979a6bead960c2058bacf818a3ee51a9153bcf Mon Sep 17 00:00:00 2001 From: rkfg Date: Mon, 3 Jun 2019 12:40:59 +0300 Subject: [PATCH] Support intelligent tiering --- s3_storage_provider.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/s3_storage_provider.py b/s3_storage_provider.py index 28cfe2d..dc3491c 100644 --- a/s3_storage_provider.py +++ b/s3_storage_provider.py @@ -33,7 +33,8 @@ logger = logging.getLogger("synapse.s3") # The list of valid AWS storage class names -_VALID_STORAGE_CLASSES = ('STANDARD', 'REDUCED_REDUNDANCY', 'STANDARD_IA') +_VALID_STORAGE_CLASSES = ('STANDARD', 'REDUCED_REDUNDANCY', + 'STANDARD_IA', 'INTELLIGENT_TIERING') # Chunk size to use when reading from s3 connection in bytes READ_CHUNK_SIZE = 16 * 1024