Get resumable downloads working in a way that the Docker CLI will actually understand. Also rename the method to conform the the name used in the Docker source code.

This commit is contained in:
Joseph Schorr 2014-07-02 21:18:46 -04:00
parent 0d89fd7f26
commit 0ac6312c8a
4 changed files with 40 additions and 10 deletions

View file

@ -39,3 +39,4 @@ class DistributedStorage(StoragePaths):
list_directory = _location_aware(BaseStorage.list_directory)
exists = _location_aware(BaseStorage.exists)
remove = _location_aware(BaseStorage.remove)
get_supports_resumeable_downloads = _location_aware(BaseStorage.get_supports_resumeable_downloads)