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 68eb31a commit 509394dCopy full SHA for 509394d
packages/cli-v3/src/entryPoints/managed-run-worker.ts
@@ -451,6 +451,8 @@ const zodIpc = new ZodIpcConnection({
451
error: {
452
type: "INTERNAL_ERROR",
453
code: TaskRunErrorCodes.CONFIGURED_INCORRECTLY,
454
+ message: err instanceof Error ? err.message : String(err),
455
+ stackTrace: err instanceof Error ? err.stack : undefined,
456
},
457
usage: {
458
durationMs: 0,
0 commit comments