Replies: 4 comments
-
Much of the advice has been of the form "oops, server was busy, wait a moment and try again". That could be incorporated into a modal response, even offering a save button there. Also, if the save was triggered by just the idle-polling, maybe have a number of periodic fails be permitted before throwing the error message? |
Beta Was this translation helpful? Give feedback.
-
I sympathize with the annoyance. I also do not like the constant save reports. However, we need to make sure any solution we apply does not filter out actual issues that we need to solve. For instance, the current flood of saving issues is all related to the same problem, detailed in #2322 , which @jeddai is working on a fix for. However, because it is one of those "temporary" issues that goes away if the user waits a few seconds, directing users to a
One issue we might be able to add a specific modal for is when the server is offline. Every so often somebody tries to save at the exact moment the server reboots in the middle of the night (we have a daily reboot), or when an issue from our host causes our server to be inaccessible for a few minutes. These are usually 503 errors. On the other hand, we have had problems before where people were causing the server to crash by having too much garbage in their brews (giant base64 images, or ugly strings that regex choked on), and then we would get a string of 503 reports from users. If we blocked all of those reports, we might not have been able to pinpoint the signal that was causing the crashes. I don't know... Perhaps something like "Looks like our servers are temporarily down. Wait a minute and try again. If this keeps happening, report the issue here"
|
Beta Was this translation helpful? Give feedback.
-
I did #2367 as a PR just now because I could and I was tired of a different branch i'm working on. |
Beta Was this translation helpful? Give feedback.
-
While most of this is resolved, we still get tons of 503 issues, as well as some 500 issues and 403:
|
Beta Was this translation helpful? Give feedback.
-
I am annoyed* with the number of Issues opened for saving issues. For one thing, for many homebrewery users, it means having to create a Github account just to post the Issue. Likely many of those people have never heard of github before then and are unlikely to come back to check status of their Issue since the Saving issue likely resolves itself fairly quickly (I think). Also, there has got to be a way to just reduce the creation of new Issues for a recurring problem. Obviously just being sure that no save error occurs is preferable, but barring that it might be good to consider:
/troubleshooting/
page with options and then offers a link to create a github issue.*Not actually really annoyed, but it is an annoyance
Beta Was this translation helpful? Give feedback.
All reactions