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
"Your task crashed with a segmentation fault (SIGSEGV). Most likely there's a bug in a package or binary you're using. If this keeps happening and you're unsure why, please get in touch.",
404
+
link: {
405
+
name: "Contact us",
406
+
href: links.site.contact,
407
+
magic: "CONTACT_FORM",
408
+
},
409
+
},
400
410
TASK_PROCESS_SIGTERM: {
401
411
message:
402
412
"Your task exited after receiving SIGTERM but we don't know why. If this keeps happening, please get in touch so we can investigate.",
@@ -419,6 +429,12 @@ export function taskRunErrorEnhancer(error: TaskRunError): EnhanceError<TaskRunE
419
429
code: TaskRunErrorCodes.TASK_PROCESS_SIGTERM,
420
430
...prettyInternalErrors.TASK_PROCESS_SIGTERM,
421
431
};
432
+
}elseif(error.message.includes("SIGSEGV")){
433
+
return{
434
+
type: "INTERNAL_ERROR",
435
+
code: TaskRunErrorCodes.TASK_PROCESS_SIGSEGV,
436
+
...prettyInternalErrors.TASK_PROCESS_SIGSEGV,
437
+
};
422
438
}
423
439
424
440
return{
@@ -454,6 +470,12 @@ export function taskRunErrorEnhancer(error: TaskRunError): EnhanceError<TaskRunE
0 commit comments