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

推荐订阅源

雷峰网
雷峰网
GbyAI
GbyAI
Stack Overflow Blog
Stack Overflow Blog
Apple Machine Learning Research
Apple Machine Learning Research
The Cloudflare Blog
WordPress大学
WordPress大学
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
F
Fortinet All Blogs
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Microsoft Azure Blog
Microsoft Azure Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 聂微东
L
LangChain Blog
云风的 BLOG
云风的 BLOG
Jina AI
Jina AI
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
I
InfoQ
大猫的无限游戏
大猫的无限游戏
MyScale Blog
MyScale Blog
人人都是产品经理
人人都是产品经理
小众软件
小众软件
量子位
The GitHub Blog
The GitHub Blog
博客园 - 【当耐特】

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): lower extra gateway advisory severity (#82922) ...
giodl73-repo · 2026-05-17 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -108,6 +108,7 @@ Docs: https://docs.openclaw.ai

108108

- Agents/replies: classify provider conversation-state rejections and return a clear message-channel error instead of auto-resetting or falling back to a generic runner failure. (#82616) Thanks @dutifulbob.

109109

- Browser plugin: trust managed Chrome CDP diagnostics when launch HTTP probes race cold-start readiness, avoiding false startup failures. Fixes #82904. (#82986) Thanks @kmanan and @hclsys.

110110

- Android: prompt before replacing a changed Gateway TLS thumbprint, showing the old and new SHA-256 fingerprints so users can accept expected certificate rotations instead of hard failing on pin mismatch. (#83077) Thanks @sliekens.

111+

- CLI/status: render extra gateway-like service diagnostics as warning/info output instead of error output. Fixes #46930. (#82922) thanks @giodl73-repo.

111112
112113

## 2026.5.17

113114
Original file line numberDiff line numberDiff line change

@@ -437,4 +437,35 @@ describe("printDaemonStatus", () => {

437437

expectMockLineContains(runtime.error, "Config warnings:");

438438

expectMockLineContains(runtime.error, "without channelConfigs metadata");

439439

});

440+
441+

it("prints extra gateway-like services as warnings instead of errors", () => {

442+

printDaemonStatus(

443+

{

444+

service: {

445+

label: "LaunchAgent",

446+

loaded: true,

447+

loadedText: "loaded",

448+

notLoadedText: "not loaded",

449+

runtime: { status: "running", pid: 8000 },

450+

},

451+

rpc: {

452+

ok: true,

453+

url: "ws://127.0.0.1:18789",

454+

server: { version: "2026.5.12" },

455+

},

456+

port: {

457+

port: 18789,

458+

status: "busy",

459+

listeners: [],

460+

hints: [],

461+

},

462+

extraServices: [{ label: "ai.openclaw.gateway.rescue", scope: "user", detail: "loaded" }],

463+

},

464+

{ json: false },

465+

);

466+
467+

expectMockLineContains(runtime.log, "Other gateway-like services detected");

468+

expectMockLineContains(runtime.log, "ai.openclaw.gateway.rescue");

469+

expect(runtime.error).not.toHaveBeenCalled();

470+

});

440471

});

Original file line numberDiff line numberDiff line change

@@ -441,24 +441,24 @@ export function printDaemonStatus(status: DaemonStatus, opts: { json: boolean })

441441

}

442442
443443

if (extraServices.length > 0) {

444-

defaultRuntime.error(errorText("Other gateway-like services detected (best effort):"));

444+

defaultRuntime.log(warnText("Other gateway-like services detected (best effort):"));

445445

for (const svc of extraServices) {

446-

defaultRuntime.error(`- ${errorText(svc.label)} (${svc.scope}, ${svc.detail})`);

446+

defaultRuntime.log(`- ${warnText(svc.label)} (${svc.scope}, ${svc.detail})`);

447447

}

448448

for (const hint of renderGatewayServiceCleanupHints()) {

449-

defaultRuntime.error(`${errorText("Cleanup hint:")} ${hint}`);

449+

defaultRuntime.log(`${infoText("Cleanup hint:")} ${hint}`);

450450

}

451451

spacer();

452452

}

453453
454454

if (extraServices.length > 0) {

455-

defaultRuntime.error(

456-

errorText(

455+

defaultRuntime.log(

456+

infoText(

457457

"Recommendation: run a single gateway per machine for most setups. One gateway supports multiple agents (see docs: /gateway#multiple-gateways-same-host).",

458458

),

459459

);

460-

defaultRuntime.error(

461-

errorText(

460+

defaultRuntime.log(

461+

infoText(

462462

"If you need multiple gateways (e.g., a rescue bot on the same host), isolate ports + config/state (see docs: /gateway#multiple-gateways-same-host).",

463463

),

464464

);