From 818abe2fb0e67443d9e47717ca1d1a3592792769 Mon Sep 17 00:00:00 2001 From: Ning Cui Date: Mon, 15 Jun 2026 13:42:34 -0400 Subject: [PATCH 1/2] harness(planner): work plan --- .harness-setup-ok | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 .harness-setup-ok diff --git a/.harness-setup-ok b/.harness-setup-ok new file mode 100644 index 00000000000..e69de29bb2d From 46290b59820616a3cd9af1e6e7681c27fce4e6e2 Mon Sep 17 00:00:00 2001 From: Ning Cui Date: Mon, 15 Jun 2026 13:42:58 -0400 Subject: [PATCH 2/2] harness(chunk-1): Add missing `return` after promise rejection in OAuth callback handler to prevent fall-through execution --- packages/core/src/code_assist/oauth2.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/core/src/code_assist/oauth2.ts b/packages/core/src/code_assist/oauth2.ts index 0e4cb50ab63..4b02b3a5e43 100644 --- a/packages/core/src/code_assist/oauth2.ts +++ b/packages/core/src/code_assist/oauth2.ts @@ -490,6 +490,7 @@ async function authWithWeb(client: OAuth2Client): Promise { 'OAuth callback not received. Unexpected request: ' + req.url, ), ); + return; } // acquire the code from the querystring, and close the web server. const qs = new url.URL(req.url!, 'http://127.0.0.1:3000').searchParams;