fix(background-agent): increase default stale timeouts and improve cancellation messages (fixes #2684)

This commit is contained in:
MoerAI
2026-03-23 20:49:43 +09:00
parent 331f7ec52b
commit fda17dd161
4 changed files with 11 additions and 11 deletions
@@ -4,9 +4,9 @@ const { describe, expect, test } = require("bun:test")
import { DEFAULT_STALE_TIMEOUT_MS } from "./constants"
describe("DEFAULT_STALE_TIMEOUT_MS", () => {
test("uses a 20 minute default", () => {
test("uses a 45 minute default", () => {
// #given
const expectedTimeout = 20 * 60 * 1000
const expectedTimeout = 45 * 60 * 1000
// #when
const timeout = DEFAULT_STALE_TIMEOUT_MS