慣性聚合 関心のあるブログ、ニュース、テクノロジーを効率的に追跡
原文を読む 慣性聚合で開く

おすすめ購読元

V
V2EX
博客园 - 叶小钗
Y
Y Combinator Blog
大猫的无限游戏
大猫的无限游戏
博客园 - 【当耐特】
酷 壳 – CoolShell
酷 壳 – CoolShell
D
Docker
WordPress大学
WordPress大学
Blog — PlanetScale
Blog — PlanetScale
博客园 - Franky
G
Google Developers Blog
爱范儿
爱范儿
Google DeepMind News
Google DeepMind News
Stack Overflow Blog
Stack Overflow Blog
云风的 BLOG
云风的 BLOG
Engineering at Meta
Engineering at Meta
aimingoo的专栏
aimingoo的专栏
V
Visual Studio Blog
M
MIT News - Artificial intelligence
Hugging Face - Blog
Hugging Face - 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 test: trim doctor command hotspots · openclaw/openclaw@c66f16a test: isolate agent auth and spawn hotspots · openclaw/openclaw@9285935 test: stabilize MCP startup disposal race · openclaw/openclaw@dd9d2eb test: merge browser contract server suites · openclaw/openclaw@5817a76 test: narrow ollama provider discovery setup · openclaw/openclaw@a0d9598 build: declare qa-lab aimock runtime dependency · openclaw/openclaw@24431e5 test: speed up safe-bins exec harness · openclaw/openclaw@ee856ab test: preserve tool helpers in embedded runner mocks · openclaw/openclaw@acd86a0 refactor: move memory embeddings into provider plugins · openclaw/openclaw@77e6e4c test: reuse system-run temp fixtures · openclaw/openclaw@7e9ff0f test: trim hotspot wait overhead · openclaw/openclaw@12a59b0 Check: avoid duplicate boundary prep · openclaw/openclaw@baf11b8 test: reduce hotspot fixture overhead · openclaw/openclaw@3a59edd feat(ui): overhaul settings and slash command UX (#67819) thanks @Bun… · openclaw/openclaw@2cfb660 QA Matrix: exit cleanly on failure · openclaw/openclaw@42805d2 QA Matrix: isolate scenario coverage · openclaw/openclaw@7e659e1 Matrix: refresh crypto bootstrap state · openclaw/openclaw@94081d8 QA Lab: add provider registry · openclaw/openclaw@bb7e982 Matrix: add plugin changelog · openclaw/openclaw@4acab55 test: trim more hotspot overhead · openclaw/openclaw@f485311
fix (cli): live ゲートウェイの systemd ヒントを抑制する (# 85336) · openclaw / openclaw @ a00c583
steipete · 2026-05-22 · via Recent Commits to openclaw:main

@@ -9,6 +9,8 @@ const runtime = vi.hoisted(() => ({

99

const resolveControlUiLinksMock = vi.hoisted(() =>

1010

vi.fn((_opts?: unknown) => ({ httpUrl: "http://127.0.0.1:18789" })),

1111

);

12+

const isSystemdUnavailableDetailMock = vi.hoisted(() => vi.fn(() => false));

13+

const renderSystemdUnavailableHintsMock = vi.hoisted(() => vi.fn<() => string[]>(() => []));

12141315

vi.mock("../../runtime.js", () => ({

1416

defaultRuntime: runtime,

@@ -46,8 +48,8 @@ vi.mock("../../daemon/restart-logs.js", () => ({

4648

}));

47494850

vi.mock("../../daemon/systemd-hints.js", () => ({

49-

isSystemdUnavailableDetail: () => false,

50-

renderSystemdUnavailableHints: () => [],

51+

isSystemdUnavailableDetail: isSystemdUnavailableDetailMock,

52+

renderSystemdUnavailableHints: renderSystemdUnavailableHintsMock,

5153

}));

52545355

vi.mock("../../infra/wsl.js", () => ({

@@ -87,6 +89,8 @@ describe("printDaemonStatus", () => {

8789

runtime.log.mockReset();

8890

runtime.error.mockReset();

8991

resolveControlUiLinksMock.mockClear();

92+

isSystemdUnavailableDetailMock.mockReset().mockReturnValue(false);

93+

renderSystemdUnavailableHintsMock.mockReset().mockReturnValue([]);

9094

});

91959296

it("prints stale gateway pid guidance when runtime does not own the listener", () => {

@@ -506,4 +510,43 @@ describe("printDaemonStatus", () => {

506510

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

507511

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

508512

});

513+514+

it("does not print systemd user-service hints when a gateway responds", () => {

515+

const platform = vi.spyOn(process, "platform", "get").mockReturnValue("linux");

516+

isSystemdUnavailableDetailMock.mockReturnValue(true);

517+

renderSystemdUnavailableHintsMock.mockReturnValue(["run loginctl enable-linger"]);

518+519+

try {

520+

printDaemonStatus(

521+

{

522+

service: {

523+

label: "systemd user",

524+

loaded: false,

525+

loadedText: "not loaded",

526+

notLoadedText: "not loaded",

527+

runtime: { status: "unknown", detail: "systemd user services unavailable" },

528+

},

529+

rpc: {

530+

ok: true,

531+

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

532+

server: { version: "2026.5.12" },

533+

},

534+

port: {

535+

port: 18789,

536+

status: "busy",

537+

listeners: [],

538+

hints: [],

539+

},

540+

extraServices: [],

541+

},

542+

{ json: false },

543+

);

544+

} finally {

545+

platform.mockRestore();

546+

}

547+548+

const errors = runtime.error.mock.calls.map(([line]) => line).join("\n");

549+

expect(errors).not.toContain("systemd user services unavailable");

550+

expect(errors).not.toContain("run loginctl enable-linger");

551+

});

509552

});