惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

WordPress大学
WordPress大学
Last Week in AI
Last Week in AI
U
Unit 42
aimingoo的专栏
aimingoo的专栏
Engineering at Meta
Engineering at Meta
博客园 - 聂微东
小众软件
小众软件
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Recent Announcements
Recent Announcements
罗磊的独立博客
MongoDB | Blog
MongoDB | Blog
Stack Overflow Blog
Stack Overflow Blog
博客园_首页
M
MIT News - Artificial intelligence
博客园 - 司徒正美
T
The Blog of Author Tim Ferriss
D
DataBreaches.Net
IT之家
IT之家
C
Check Point Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
T
Tailwind CSS Blog
D
Docker
Microsoft Security Blog
Microsoft Security Blog
Google DeepMind News
Google DeepMind News

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
fix(cli): preserve gateway request errors in json mode · ...
vincentkoc · 2026-06-16 · via Recent Commits to openclaw:main

@@ -365,8 +365,16 @@ export function runCommand(command, args, options = {}) {

365365

? `timed out after ${timeoutMs}ms`

366366

: `failed with ${signal || status}`;

367367

reject(

368-

new Error(

369-

`${command} ${args.join(" ")} ${failure}${detail ? `\n${tailText(detail)}` : ""}`,

368+

Object.assign(

369+

new Error(

370+

`${command} ${args.join(" ")} ${failure}${detail ? `\n${tailText(detail)}` : ""}`,

371+

),

372+

{

373+

signal,

374+

status,

375+

stderr: stderr.text,

376+

stdout: stdout.text,

377+

},

370378

),

371379

);

372380

});

@@ -443,6 +451,38 @@ function parseJsonOutput(stdout) {

443451

throw new Error(`JSON output was not parseable:\n${tailText(trimmed)}`);

444452

}

445453454+

export function parseGatewayCliRequestFailure(error) {

455+

if (typeof error?.stdout !== "string" || !error.stdout.trim()) {

456+

return null;

457+

}

458+

let payload;

459+

try {

460+

payload = parseJsonOutput(error.stdout);

461+

} catch {

462+

return null;

463+

}

464+

const requestError = payload?.ok === false ? payload.error : null;

465+

if (

466+

requestError?.type !== "gateway_request_error" ||

467+

!isNonEmptyString(requestError.code) ||

468+

!isNonEmptyString(requestError.message) ||

469+

typeof requestError.retryable !== "boolean" ||

470+

(requestError.retryAfterMs !== undefined &&

471+

(typeof requestError.retryAfterMs !== "number" ||

472+

!Number.isInteger(requestError.retryAfterMs) ||

473+

requestError.retryAfterMs < 0))

474+

) {

475+

return null;

476+

}

477+

return Object.assign(new Error(requestError.message), {

478+

name: "GatewayClientRequestError",

479+

gatewayCode: requestError.code,

480+

...(requestError.details !== undefined ? { details: requestError.details } : {}),

481+

retryable: requestError.retryable,

482+

...(requestError.retryAfterMs !== undefined ? { retryAfterMs: requestError.retryAfterMs } : {}),

483+

});

484+

}

485+446486

function boundedJsonPreview(value, space) {

447487

try {

448488

return JSON.stringify(previewJsonValue(value), null, space) ?? String(value);

@@ -632,25 +672,30 @@ async function importCallGatewayModule() {

632672633673

async function rpcCallViaCli(method, params, options) {

634674

const config = resolveKitchenSinkRpcConfig(options.env);

635-

const { stdout } = await runOpenClaw(

636-

options.runner,

637-

[

638-

"gateway",

639-

"call",

640-

method,

641-

"--url",

642-

`ws://127.0.0.1:${options.port}`,

643-

"--token",

644-

TOKEN,

645-

"--timeout",

646-

String(config.rpcTimeoutMs),

647-

"--json",

648-

"--params",

649-

JSON.stringify(params ?? {}),

650-

],

651-

options.env,

652-

createRpcCliRunOptions(method, options),

653-

);

675+

let stdout;

676+

try {

677+

({ stdout } = await runOpenClaw(

678+

options.runner,

679+

[

680+

"gateway",

681+

"call",

682+

method,

683+

"--url",

684+

`ws://127.0.0.1:${options.port}`,

685+

"--token",

686+

TOKEN,

687+

"--timeout",

688+

String(config.rpcTimeoutMs),

689+

"--json",

690+

"--params",

691+

JSON.stringify(params ?? {}),

692+

],

693+

options.env,

694+

createRpcCliRunOptions(method, options),

695+

));

696+

} catch (error) {

697+

throw parseGatewayCliRequestFailure(error) ?? error;

698+

}

654699

return parseJsonOutput(stdout);

655700

}

656701

@@ -1399,10 +1444,7 @@ export async function assertOperatorRpcDenied(probe, call) {

13991444

} catch (error) {

14001445

const gatewayCode = error?.gatewayCode;

14011446

const message = String(error?.message ?? "");

1402-

if (

1403-

(gatewayCode === undefined || gatewayCode === "INVALID_REQUEST") &&

1404-

message.includes("unauthorized role: operator")

1405-

) {

1447+

if (gatewayCode === "INVALID_REQUEST" && message.includes("unauthorized role: operator")) {

14061448

return;

14071449

}

14081450

throw error;