We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74f3d5d commit 3fccf05Copy full SHA for 3fccf05
1 file changed
packages/cli/src/cli/main.ts
@@ -959,8 +959,7 @@ export function createProgram(): Command {
959
// Detect "Connection X not found" pattern
960
const connMatch = errMsg.match(/[Cc]onnection\s+([0-9a-f-]{36})\s+not\s+found/);
961
if (!connMatch) {
962
- console.error(`Error: ${errMsg}`);
963
- process.exit(1);
+ fail("request_failed", errMsg);
964
}
965
966
const missingConnId = connMatch[1];
0 commit comments