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
Also, there should probably be some better error handling -- would be nice if there was some way to differentiate between fatal and not-so-fatal errors.
If we have a lot of potentially-non-fatal errors, maybe we could change return signatures to be Result<(), Vec<Error>>, and report all non-fatal errors at the end?
Also, there should probably be some better error handling -- would be nice if there was some way to differentiate between fatal and not-so-fatal errors.
Originally posted by @cole-h in #1 (comment)
If we have a lot of potentially-non-fatal errors, maybe we could change return signatures to be
Result<(), Vec<Error>>, and report all non-fatal errors at the end?