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

推荐订阅源

U
Unit 42
小众软件
小众软件
Y
Y Combinator Blog
S
SegmentFault 最新的问题
WordPress大学
WordPress大学
宝玉的分享
宝玉的分享
人人都是产品经理
人人都是产品经理
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
L
LangChain Blog
Martin Fowler
Martin Fowler
美团技术团队
B
Blog RSS Feed
GbyAI
GbyAI
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
大猫的无限游戏
大猫的无限游戏
博客园 - 司徒正美
T
Tailwind CSS Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
T
The Blog of Author Tim Ferriss
Microsoft Azure Blog
Microsoft Azure Blog
腾讯CDC
Hugging Face - Blog
Hugging Face - Blog
D
Docker
G
Google Developers 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
ci: stabilize release validation lanes · openclaw/opencla...
steipete · 2026-04-28 · via Recent Commits to openclaw:main

@@ -118,6 +118,7 @@ export type TelegramQaRunResult = {

118118

reportPath: string;

119119

summaryPath: string;

120120

observedMessagesPath: string;

121+

gatewayDebugDirPath?: string;

121122

scenarios: TelegramQaScenarioResult[];

122123

};

123124

@@ -664,6 +665,7 @@ function renderTelegramQaMarkdown(params: {

664665

credentialSource: "convex" | "env";

665666

redactMetadata: boolean;

666667

groupId: string;

668+

gatewayDebugDirPath?: string;

667669

startedAt: string;

668670

finishedAt: string;

669671

scenarios: TelegramQaScenarioResult[];

@@ -690,6 +692,12 @@ function renderTelegramQaMarkdown(params: {

690692

}

691693

lines.push("");

692694

}

695+

if (params.gatewayDebugDirPath) {

696+

lines.push("## Gateway Debug");

697+

lines.push("");

698+

lines.push(`- Preserved at: \`${params.gatewayDebugDirPath}\``);

699+

lines.push("");

700+

}

693701

if (params.cleanupIssues.length > 0) {

694702

lines.push("## Cleanup");

695703

lines.push("");

@@ -1094,6 +1102,8 @@ export async function runTelegramQaLive(params: {

10941102

const startedAt = new Date().toISOString();

10951103

const scenarioResults: TelegramQaScenarioResult[] = [];

10961104

const cleanupIssues: string[] = [];

1105+

const gatewayDebugDirPath = path.join(outputDir, "gateway-debug");

1106+

let preservedGatewayDebugArtifacts = false;

10971107

let canaryFailure: string | null = null;

10981108

try {

10991109

if (params.sutOpenClawCommand && params.preflightInstalledOnboarding === true) {

@@ -1296,7 +1306,13 @@ export async function runTelegramQaLive(params: {

12961306

}

12971307

} finally {

12981308

try {

1299-

await gatewayHarness.stop();

1309+

const shouldPreserveGatewayDebugArtifacts = scenarioResults.some(

1310+

(scenario) => scenario.status === "fail",

1311+

);

1312+

await gatewayHarness.stop(

1313+

shouldPreserveGatewayDebugArtifacts ? { preserveToDir: gatewayDebugDirPath } : undefined,

1314+

);

1315+

preservedGatewayDebugArtifacts = shouldPreserveGatewayDebugArtifacts;

13001316

} catch (error) {

13011317

appendLiveLaneIssue(cleanupIssues, "live gateway cleanup", error);

13021318

}

@@ -1352,6 +1368,7 @@ export async function runTelegramQaLive(params: {

13521368

credentialSource: credentialLease.source,

13531369

redactMetadata: redactPublicMetadata,

13541370

groupId: redactPublicMetadata ? "<redacted>" : runtimeEnv.groupId,

1371+

gatewayDebugDirPath: preservedGatewayDebugArtifacts ? gatewayDebugDirPath : undefined,

13551372

startedAt,

13561373

finishedAt,

13571374

scenarios: scenarioResults,

@@ -1379,6 +1396,7 @@ export async function runTelegramQaLive(params: {

13791396

report: reportPath,

13801397

summary: summaryPath,

13811398

observedMessages: observedMessagesPath,

1399+

...(preservedGatewayDebugArtifacts ? { gatewayDebug: gatewayDebugDirPath } : {}),

13821400

};

13831401

if (canaryFailure) {

13841402

throw new Error(

@@ -1403,6 +1421,7 @@ export async function runTelegramQaLive(params: {

14031421

reportPath,

14041422

summaryPath,

14051423

observedMessagesPath,

1424+

...(preservedGatewayDebugArtifacts ? { gatewayDebugDirPath } : {}),

14061425

scenarios: scenarioResults,

14071426

};

14081427

}