Skip to content
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

Feedback to the user when a background task fails #4516

Open
monsieurtanuki opened this issue Aug 13, 2023 · 0 comments
Open

Feedback to the user when a background task fails #4516

monsieurtanuki opened this issue Aug 13, 2023 · 0 comments

Comments

@monsieurtanuki
Copy link
Contributor

Problem

Sometimes, background tasks fail.
Like in the real world, uploads and downloads sometimes fail.
The problem is that we don't warn the user. And we just retry the task, again and again.
In some cases, retrying is the correct approach: if the connection was down, if the server was down.
But there are cases where the server does not accept our data, and never will. For instance, if the image is too small (cf. #4488).
And in that particular case, we just get a confuse status ('status not ok') and a localized message (e.g. 'Das Foto ist zu klein. Bitte beachten Sie, dass Sie kein Foto aus dem Internet, sondern nur Ihre eigenen Fotos hochladen dürfen.').

Proposed solution

Let's say that there are 3 possible cases:

  1. the background task works OK - no problem
  2. the background task throws an exception - typically connection / server down - we'll retry
  3. the server returns status not ok - this is problematic

In case (3), we have good reasons to say that the background task will always fail, and it's no use running it again.
But how do we warn the user that the background task is in error and the local data is to be discarded?
A system notification? A dialog that gets opened from most pages if something like that happens?

@monsieurtanuki monsieurtanuki added the ✨ enhancement New feature or request label Aug 13, 2023
@teolemon teolemon removed the ✨ enhancement New feature or request label Oct 18, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Status: 💬 To discuss and validate
Development

No branches or pull requests

2 participants