-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feat/dev 506 large file download (#276)
DEV-506: fix blocking issue on failed segment retry When a worker fails to write its segment, the worker would immediately exit, causing the main process to block as it is waiting for all the child processes to read from the work queue a final message.
- Loading branch information
Showing
9 changed files
with
600 additions
and
123 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,6 @@ | ||
class ClientError(Exception): | ||
"""Base client error.""" | ||
|
||
|
||
class MD5ValidationError(Exception): | ||
"""Base MD5 validation error.""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.