We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
putBytes()
maxUploadRetryTimeMillis
1 parent ddc169f commit 27a16a1Copy full SHA for 27a16a1
firebase-storage/CHANGELOG.md
@@ -1,5 +1,6 @@
1
# Unreleased
2
-
+* [fixed] Fixed an issue where `maxUploadRetryTimeMillis` parameter is ignored when uploading using
3
+ `putBytes()`
4
5
# 21.0.0
6
* [changed] Bump internal dependencies
firebase-storage/src/main/java/com/google/firebase/storage/UploadTask.java
@@ -108,7 +108,7 @@ public class UploadTask extends StorageTask<UploadTask.TaskSnapshot> {
108
storage.getApp().getApplicationContext(),
109
mAuthProvider,
110
mAppCheckProvider,
111
- storage.getMaxDownloadRetryTimeMillis());
+ storage.getMaxUploadRetryTimeMillis());
112
}
113
114
UploadTask(
0 commit comments