Somehow Firebase Storage has stopped working for me. I am receiving the follow cluster of errors
Sometimes there will be a string of these
W/StorageTask: unable to change internal state to: INTERNAL_STATE_IN_PROGRESS isUser: false from state:INTERNAL_STATE_CANCELING
W/StorageTask: unable to change internal state to: INTERNAL_STATE_CANCELED isUser: true from state:INTERNAL_STATE_IN_PROGRESS
W/StorageTask: unable to change internal state to: INTERNAL_STATE_CANCELED isUser: true from state:INTERNAL_STATE_QUEUED
And sometimes I will find this guy...
D/StreamDownloadTask: Initial opening of Stream failed
java.io.IOException: Could not open resulting stream.
at com.google.firebase.storage.StreamDownloadTask.zzacH(Unknown Source)
at com.google.firebase.storage.StreamDownloadTask.zza(Unknown Source)
at com.google.firebase.storage.StreamDownloadTask$1.zzacJ(Unknown Source)
at com.google.firebase.storage.StreamDownloadTask$1.call(Unknown Source)
at com.google.firebase.storage.StreamDownloadTask$zza.zzacL(Unknown Source)
at com.google.firebase.storage.StreamDownloadTask$zza.zza(Unknown Source)
at com.google.firebase.storage.StreamDownloadTask.run(Unknown Source)
at com.google.firebase.storage.StorageTask$8.run(Unknown Source)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1133)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:607)
at java.lang.Thread.run(Thread.java:761)
My app loads images and some mp4 files from storage but since last night nothing from storage will load, I haven't changed my versions or anything.
I am using Glide with image loading (with FirebaseImageLoader helper) like so
Glide.with(context)
.using(new FirebaseImageLoader())
.load(iconRef)
.dontAnimate()
.error(R.drawable.ic_account_circle)
.into(holder.avatar);
Firebase 10.2.0 (stuck with 10.2.0 since FirebaseUI has been behind on updating their versions)
FirebaseUI 1.2.0
Glide 3.7.0