How Handle "storage/retry-limit-exceeded" Firebase Storage Web While Uploading Large File Of Size 1gb
Relevant code: var storageRef = firebase.storage().ref(file_path); var uploadTask = storageRef.put(file); uploadTask.on( 'state_changed', function(snapshot) { // O
Solution 1:
The error essentially means: The maximum time limit on an operation (upload, download, delete, etc.) has been excceded. Try uploading again.
Try changing the time limit set for upload retries using maxUploadRetryTime [1]
[1] https://firebase.google.com/docs/reference/js/firebase.storage.Storage
Post a Comment for "How Handle "storage/retry-limit-exceeded" Firebase Storage Web While Uploading Large File Of Size 1gb"