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
@@ -21,9 +21,9 @@ function createRunningTask(startedAt: Date): BackgroundTask {
}
describe("DEFAULT_MESSAGE_STALENESS_TIMEOUT_MS", () => {
test("uses a 30 minute default", () => {
test("uses a 60 minute default", () => {
// #given
const expectedTimeout = 30 * 60 * 1000
const expectedTimeout = 60 * 60 * 1000
// #when
const timeout = DEFAULT_MESSAGE_STALENESS_TIMEOUT_MS