summary refs log tree commit diff
path: root/synapse/config
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2018-01-18 17:11:20 +0000
committerErik Johnston <erik@matrix.org>2018-01-18 17:11:29 +0000
commitaae77da73ffc89c31d0b17fa8ce5d8b58605de63 (patch)
treec832988b457a7b71a12ff170c001a667df14ca83 /synapse/config
parentMake storage providers more configurable (diff)
downloadsynapse-aae77da73ffc89c31d0b17fa8ce5d8b58605de63.tar.xz
Fixup comments
Diffstat (limited to 'synapse/config')
-rw-r--r--synapse/config/repository.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/synapse/config/repository.py b/synapse/config/repository.py
index 81db0193fb..8bbc16ba40 100644
--- a/synapse/config/repository.py
+++ b/synapse/config/repository.py
@@ -39,7 +39,11 @@ ThumbnailRequirement = namedtuple(
 )
 
 MediaStorageProviderConfig = namedtuple(
-    "MediaStorageProviderConfig", ("store_local", "store_remote", "store_synchronous",)
+    "MediaStorageProviderConfig", (
+        "store_local",  # Whether to store newly uploaded local files
+        "store_remote",  # Whether to store newly downloaded remote files
+        "store_synchronous",  # Whether to wait for successful storage for local uploads
+    ),
 )