Skip to content

Commit

Permalink
refactor(core): Stop reporting disk I/O error to Sentry (no-changelog)
Browse files Browse the repository at this point in the history
  • Loading branch information
ivov committed Aug 8, 2024
1 parent 0de9d56 commit 1562717
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cli/src/ErrorReporting.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export const initErrorHandling = async () => {

if (
originalException instanceof QueryFailedError &&
originalException.message.includes('SQLITE_FULL')
['SQLITE_FULL', 'SQLITE_IOERR'].some((errMsg) => originalException.message.includes(errMsg))
) {
return null;
}
Expand Down

0 comments on commit 1562717

Please sign in to comment.