You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently method BaseActionWatcher.watch catches errors in an internal try/catch block and silently swallow the errors. It stops watching on any error without providing any chance to retry. It returns undefined in all cases :O, and all state properties are private so there's no way to handle errors from derived classes.
The text was updated successfully, but these errors were encountered:
It should be a class design bug, not an enhancement. Because whenever a network error happens for example, client app (which using demux) knows nothing and can do nothing even if it wants to restart.
Currently method
BaseActionWatcher.watch
catches errors in an internaltry/catch
block and silently swallow the errors. It stops watching on any error without providing any chance to retry. It returnsundefined
in all cases :O, and all state properties are private so there's no way to handle errors from derived classes.The text was updated successfully, but these errors were encountered: