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

推荐订阅源

博客园 - Franky
Apple Machine Learning Research
Apple Machine Learning Research
月光博客
月光博客
Vercel News
Vercel News
Recent Announcements
Recent Announcements
B
Blog RSS Feed
Y
Y Combinator Blog
M
MIT News - Artificial intelligence
MongoDB | Blog
MongoDB | Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
雷峰网
雷峰网
D
Docker
Jina AI
Jina AI
IT之家
IT之家
人人都是产品经理
人人都是产品经理
L
LangChain Blog
G
Google Developers Blog
Google DeepMind News
Google DeepMind News
MyScale Blog
MyScale Blog
博客园 - 叶小钗
The GitHub Blog
The GitHub Blog
The Cloudflare Blog
A
About on SuperTechFans
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(qa): isolate matrix stale sync replay · openclaw/ope...
steipete · 2026-04-23 · via Recent Commits to openclaw:main

@@ -995,6 +995,7 @@ describe("matrix live qa scenarios", () => {

995995

const stateRoot = await mkdtemp(path.join(os.tmpdir(), "matrix-stale-sync-"));

996996

try {

997997

const accountDir = path.join(stateRoot, "matrix", "accounts", "sut", "server", "token");

998+

const staleSyncRoomId = "!stale-sync:matrix-qa.test";

998999

const syncStorePath = path.join(accountDir, "bot-storage.json");

9991000

const dedupeStorePath = path.join(accountDir, "inbound-dedupe.json");

10001001

await mkdir(accountDir, { recursive: true });

@@ -1025,7 +1026,7 @@ describe("matrix live qa scenarios", () => {

10251026

version: 1,

10261027

entries: [

10271028

{

1028-

key: "!restart:matrix-qa.test|$first-trigger",

1029+

key: `${staleSyncRoomId}|$first-trigger`,

10291030

ts: Date.now(),

10301031

},

10311032

],

@@ -1034,7 +1035,7 @@ describe("matrix live qa scenarios", () => {

10341035

return {

10351036

event: {

10361037

kind: "message",

1037-

roomId: "!restart:matrix-qa.test",

1038+

roomId: staleSyncRoomId,

10381039

eventId: kind === "fresh" ? "$fresh-reply" : "$first-reply",

10391040

sender: "@sut:matrix-qa.test",

10401041

type: "m.room.message",

@@ -1086,17 +1087,17 @@ describe("matrix live qa scenarios", () => {

10861087

defaultRoomKey: "main",

10871088

rooms: [

10881089

{

1089-

key: "restart",

1090+

key: "stale-sync",

10901091

kind: "group",

10911092

memberRoles: ["driver", "observer", "sut"],

10921093

memberUserIds: [

10931094

"@driver:matrix-qa.test",

10941095

"@observer:matrix-qa.test",

10951096

"@sut:matrix-qa.test",

10961097

],

1097-

name: "Restart room",

1098+

name: "Stale sync room",

10981099

requireMention: true,

1099-

roomId: "!restart:matrix-qa.test",

1100+

roomId: staleSyncRoomId,

11001101

},

11011102

],

11021103

},