Implement error handling #11
Loading…
Reference in New Issue
No description provided.
Delete Branch "%!s(<nil>)"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Error handling for pretty much everything, especially grpc-web requests
I have a proposal for this which involves
useContext
anduseReducer
in symphony to replicate theredux
library - a solution that allows for application (global) level state.This would mean creating an error handling component that is responsible for reading errors from the global state and displaying an error message (however that should be done) and manages their dismissal (automatic, or manual, or both). Each part of the application that can then produce an error simply has to add an error to the global state and respond accordingly.
Aside from this, a tool like Sentry (which has a free tier) could be good for collecting and resolving errors that are occurring unexpectedly.
This sounds good 👍
Error reporting via Sentry or whatever can probably be treated as a separate problem (agree it would be useful though.)