mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-09 16:14:31 +00:00
test: speed up trigger harness queue defaults
This commit is contained in:
@@ -124,6 +124,8 @@ export function makeCfg(home: string): OpenClawConfig {
|
|||||||
defaults: {
|
defaults: {
|
||||||
model: { primary: "anthropic/claude-opus-4-5" },
|
model: { primary: "anthropic/claude-opus-4-5" },
|
||||||
workspace: join(home, "openclaw"),
|
workspace: join(home, "openclaw"),
|
||||||
|
// Test harness: avoid 1s coalescer idle sleeps that dominate trigger suites.
|
||||||
|
blockStreamingCoalesce: { idleMs: 1 },
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
channels: {
|
channels: {
|
||||||
@@ -131,6 +133,11 @@ export function makeCfg(home: string): OpenClawConfig {
|
|||||||
allowFrom: ["*"],
|
allowFrom: ["*"],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
messages: {
|
||||||
|
queue: {
|
||||||
|
debounceMs: 0,
|
||||||
|
},
|
||||||
|
},
|
||||||
session: { store: join(home, "sessions.json") },
|
session: { store: join(home, "sessions.json") },
|
||||||
} as OpenClawConfig;
|
} as OpenClawConfig;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user