Add storage validation to the status endpoint

Fixes #1659
This commit is contained in:
Joseph Schorr 2016-08-01 13:02:15 -04:00
parent abce6a8dbc
commit c30b8dd1ad
3 changed files with 19 additions and 3 deletions

View file

@ -46,6 +46,7 @@ class DistributedStorage(StoragePaths):
stream_write = _location_aware(BaseStorage.stream_write)
exists = _location_aware(BaseStorage.exists)
remove = _location_aware(BaseStorage.remove)
validate = _location_aware(BaseStorage.validate)
get_checksum = _location_aware(BaseStorage.get_checksum)
get_supports_resumable_downloads = _location_aware(BaseStorage.get_supports_resumable_downloads)