diff options
Diffstat (limited to 'client/src/leap')
-rw-r--r-- | client/src/leap/soledad/client/http_target/fetch.py | 2 | ||||
-rw-r--r-- | client/src/leap/soledad/client/http_target/fetch_protocol.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/client/src/leap/soledad/client/http_target/fetch.py b/client/src/leap/soledad/client/http_target/fetch.py index 85e2967d..df07a96a 100644 --- a/client/src/leap/soledad/client/http_target/fetch.py +++ b/client/src/leap/soledad/client/http_target/fetch.py @@ -149,7 +149,7 @@ class HTTPDocFetcher(object): return (metadata['number_of_changes'], metadata['new_generation'], metadata['new_transaction_id']) except (ValueError, KeyError): - raise errors.BrokenSyncStream + raise errors.BrokenSyncStream('Metadata parsing failed') def _emit_receive_status(user_data, received_docs, total): diff --git a/client/src/leap/soledad/client/http_target/fetch_protocol.py b/client/src/leap/soledad/client/http_target/fetch_protocol.py index 3322ec70..fa6b1969 100644 --- a/client/src/leap/soledad/client/http_target/fetch_protocol.py +++ b/client/src/leap/soledad/client/http_target/fetch_protocol.py @@ -136,7 +136,7 @@ class DocStreamReceiver(ReadBodyProtocol): Checks that ']' came and stream was properly closed. """ if not self._properly_finished: - raise errors.BrokenSyncStream() + raise errors.BrokenSyncStream('Stream not properly closed') content = self._buffer.getvalue()[0:self._buffer.tell()] self._buffer.close() return content |