diff options
author | drebs <drebs@riseup.net> | 2017-10-11 11:20:22 -0300 |
---|---|---|
committer | drebs <drebs@riseup.net> | 2017-10-12 12:06:33 -0300 |
commit | 07f94a9a6f281069a0441cafce3f8a92e6d03e8b (patch) | |
tree | 6744c96d2dd52b3c28ae45f64323cde7178e5631 /tests | |
parent | 1cde86239f68ca8fa896ecf4ffc6b891eeb837e3 (diff) |
[feature] make concurrent blob writes configurable
Diffstat (limited to 'tests')
-rw-r--r-- | tests/server/test_config.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/server/test_config.py b/tests/server/test_config.py index dfb09f4c..92b0f67f 100644 --- a/tests/server/test_config.py +++ b/tests/server/test_config.py @@ -66,5 +66,6 @@ class ConfigurationParsingTest(unittest.TestCase): 'batching': False, 'blobs': False, 'services_tokens_file': '/etc/soledad/services.tokens', - 'blobs_path': '/var/lib/soledad/blobs'} + 'blobs_path': '/var/lib/soledad/blobs', + 'concurrent_blob_writes': 50} self.assertDictEqual(expected, config['soledad-server']) |