-
Notifications
You must be signed in to change notification settings - Fork 597
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Firebase Storage ref.delete()
is emitting exception
#5836
Comments
Hey @russellwheatley, thanks for the well detailed report. I was able to exhibit the same behavior. I'll reach out to our engineers about this. |
Hey Russel (@russellwheatley), While it's an interesting idea to have the SDKs suppress logging of these errors once the developer attached a failure or completion listener, I don't think we do that anywhere else. I'm also not sure if this is a pattern we should introduce. We have no reasonable way to verify that the developer actually handles the error (although they indicate they do in your original FlutterFire issue #12590). Given the number of completion handlers that I see where devs simply ignore the failure case, we might end up in a worse situation when trying to help the troubleshoot problems in their app. Do we have a method that checks whether a file exists at a reference? That would be a much better way of handling use-case, as such a method of course would not raise/log an error when the file doesn't exist. If such a method doesn't exist, should it? |
I checked for such a method and I don't think it exists based on the Firebase docs. The Flutter docs indicate that In any case an Re: logging, I don't think it's a good idea to emit logs on all error, especially full tracebacks. Aside from the fact that the tracebacks are not useful for Flutter users, throwing errors will print them to the console anyway. If a dev explicitly handles it, then it's a non-issue for their app because they supposedly have logic to ignore or work around the error. My use-case is deleting an object, and ignoring "not found" errors. This makes sense because the goal is to ensure the object doesn't exist, so if it was never there then there's no problem. Having such thorough tracebacks each time fills up my console with irrelevant information I specifically chose to ignore in the code. Basically,
I would argue that letting the error go unhandled is just as noticeable as logging it directly, unless I'm missing something about Android dev in Java/Kotlin workflows where errors can go unhandled silently. |
Hi @Levi-Lesches, thank you for the feedback. This is very insightful. We've given this some thought, and we could consider having an P.S. For folks who find this useful, adding an emoji thumbs up on the original post can help us prioritize adding this to the roadmap. |
[READ] Step 1: Are you in the right place?
Issues filed here should be about bugs in the code in this repository.
If you have a general question, need help debugging, or fall into some
other category use one of these other channels:
with the firebase tag.
google group.
of the above categories, reach out to the personalized
Firebase support channel.
[REQUIRED] Step 2: Describe your environment
[REQUIRED] Step 3: Describe the problem
If you try to delete a reference that does not exist, an exception is still emitted even when using
addOnCompleteListener
oraddOnFailureListener
listener .The logs might be intended but it's not something I've seen often in other API failures on firebase android.
Logcat logs
Steps to reproduce:
Relevant Code:
Java snippet:
The text was updated successfully, but these errors were encountered: