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

おすすめ購読元

J
Java Code Geeks
Martin Fowler
Martin Fowler
B
Blog RSS Feed
D
DataBreaches.Net
L
LangChain Blog
月光博客
月光博客
S
SegmentFault 最新的问题
阮一峰的网络日志
阮一峰的网络日志
V
Visual Studio Blog
美团技术团队
Jina AI
Jina AI
博客园 - 司徒正美
雷峰网
雷峰网
Last Week in AI
Last Week in AI
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
IT之家
IT之家
博客园 - 三生石上(FineUI控件)
WordPress大学
WordPress大学
小众软件
小众软件
罗磊的独立博客
博客园_首页
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
A
About on SuperTechFans
Engineering at Meta
Engineering at Meta

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): suppress systemd hints for live gateway (#85336...
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

});