diff options
author | Victor Shyba <victor.shyba@gmail.com> | 2016-09-19 21:48:56 -0300 |
---|---|---|
committer | Victor Shyba <victor1984@riseup.net> | 2016-11-18 15:55:52 -0300 |
commit | b401f5cdcf3c9daca22beef0217e25c2b8d0e5eb (patch) | |
tree | a8327ef78fd993b225d3616edcc96c12aad7de8f /testing/tests/perf | |
parent | 93a8be4a374a4863a36c99e5cca5eed8e6568d15 (diff) |
[feature] upload streaming
1) enable HTTP 1.1 chunked upload on server
2) make the client sync.py generate a list of function calls instead of
a list of full docs
3) disable encryption pool
4) make the doc encryption a list of function calls
5) create a twisted protocol for sending
6) make a producer that calls the doc generation as necessary
Diffstat (limited to 'testing/tests/perf')
-rw-r--r-- | testing/tests/perf/conftest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/tests/perf/conftest.py b/testing/tests/perf/conftest.py index 5ac1f3c0..f960bd32 100644 --- a/testing/tests/perf/conftest.py +++ b/testing/tests/perf/conftest.py @@ -243,7 +243,7 @@ def soledad_client(tmpdir, soledad_server, remote_db, soledad_dbs, request): server_url=server_url, cert_file=None, auth_token=token, - defer_encryption=True) + defer_encryption=False) request.addfinalizer(soledad_client.close) return soledad_client return create |