We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72962b3 commit 5c018f3Copy full SHA for 5c018f3
.changeset/real-flies-try.md
@@ -0,0 +1,5 @@
1
+---
2
+"roo-cline": patch
3
4
+
5
+Fix task size cache TTL
src/core/task-persistence/taskMetadata.ts
@@ -9,7 +9,7 @@ import { findLastIndex } from "../../shared/array"
9
import { HistoryItem } from "../../shared/HistoryItem"
10
import { getTaskDirectoryPath } from "../../shared/storagePathManager"
11
12
-const taskSizeCache = new NodeCache({ stdTTL: 5 * 60, checkperiod: 30 })
+const taskSizeCache = new NodeCache({ stdTTL: 30, checkperiod: 5 * 60 })
13
14
export type TaskMetadataOptions = {
15
messages: ClineMessage[]
0 commit comments