We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ae2a7c commit eed71f9Copy full SHA for eed71f9
apps/webapp/app/v3/services/completeAttempt.server.ts
@@ -290,6 +290,9 @@ export class CompleteAttemptService extends BaseService {
290
sanitizedError.code === "MAX_DURATION_EXCEEDED"
291
) {
292
status = "TIMED_OUT";
293
+ // TODO: check we want these all to be crashes by default
294
+ } else if (sanitizedError.type === "INTERNAL_ERROR") {
295
+ status = "CRASHED";
296
} else {
297
status = "COMPLETED_WITH_ERRORS";
298
}
0 commit comments