STAR-322: Implementing multi-part upload (doesnt always work)

This commit is contained in:
Daniel Schiavini 2018-12-12 17:31:08 +01:00
parent 0467756ed6
commit fed779d0d2
6 changed files with 161 additions and 67 deletions

View file

@ -76,7 +76,8 @@ class NetworkManagerMock:
## Emits the signal that the reply is ready to all prepared replies.
def flushReplies(self) -> None:
for reply in self.replies.values():
for key, reply in self.replies.items():
Logger.log("i", "Flushing reply to {} {}", *key)
self.finished.emit(reply)
self.reset()