fix: align exec no-output timeout defaults (#32235) (thanks @bmendonca3)

This commit is contained in:
Peter Steinberger 2026-03-02 22:46:52 +00:00
parent be578b43d3
commit a78ec81ae6
2 changed files with 2 additions and 2 deletions

View File

@ -27,6 +27,7 @@ Docs: https://docs.openclaw.ai
### Fixes
- Secrets/exec resolver timeout defaults: use provider `timeoutMs` as the default inactivity (`noOutputTimeoutMs`) watchdog for exec secret providers, preventing premature no-output kills for resolvers that start producing output after 2s. (#32235) Thanks @bmendonca3.
- Auto-reply/inline command cleanup: preserve newline structure when stripping inline `/status` and extracting inline slash commands by collapsing only horizontal whitespace, preventing paragraph flattening in multi-line replies. (#32224) Thanks @scoootscooob.
- macOS/LaunchAgent security defaults: write `Umask=63` (octal `077`) into generated gateway launchd plists so post-update service reinstalls keep owner-only file permissions by default instead of falling back to system `022`. (#32022) Fixes #31905. Thanks @liuxiaopai-ai.
- Plugin SDK/runtime hardening: add package export verification in CI/release checks to catch missing runtime exports before publish-time regressions. (#28575) Thanks @Glucksberg.

View File

@ -182,8 +182,7 @@ describe("secret ref resolver", () => {
if (process.platform === "win32") {
return;
}
const root = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-secrets-resolve-exec-delay-"));
cleanupRoots.push(root);
const root = await createCaseDir("exec-delay");
const scriptPath = path.join(root, "resolver-delay.mjs");
await writeSecureFile(
scriptPath,