Skip to content

Commit

Permalink
storage: explain gcs-resumable-upload (#1692)
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenplusplus authored and callmehiphop committed Oct 16, 2016
1 parent cdd38a6 commit 14565ef
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion packages/storage/src/file.js
Original file line number Diff line number Diff line change
Expand Up @@ -749,7 +749,12 @@ File.prototype.createResumableUpload = function(options, callback) {
* A File object can also be used to create files for the first time.
*
* Resumable uploads are automatically enabled and must be shut off explicitly
* by setting `options.resumable` to `false`.
* by setting `options.resumable` to `false`. We use
* [`gcs-resumable-upload`](https://github.com/stephenplusplus/gcs-resumable-upload),
* which persists a config file with metadata about the upload request (see
* ["How it works"](https://github.com/stephenplusplus/gcs-resumable-upload#how-it-works)).
* If you start running into unexplainable errors, try clearing this cache file
* located at `~/.config/configstore/gcs-resumable-upload.json`.
*
* <p class="notice">
* There is some overhead when using a resumable upload that can cause
Expand Down

0 comments on commit 14565ef

Please sign in to comment.