-
Notifications
You must be signed in to change notification settings - Fork 536
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change how we handle exceptions in driver code: they become non-retry…
…able (#4967) Closes #4946 All errors that come from storage go through translation where we explicitly assign canRetry property to error object that is thrown. But if we do not go through that translation (like if code hit exception, like dereferencing undefined), then error object does not have that property and Loader layer will keep retrying. Switching to fail-fast paradigm here to find these bugs and address them, but also not to retry forever.
- Loading branch information
Showing
3 changed files
with
32 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters