Skip to content

Commit fe06817

Browse files
authored
comment correct TTL
1 parent abed6dc commit fe06817

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

webview-ui/src/components/chat/ChatView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ const ChatViewComponent: React.ForwardRefRenderFunction<ChatViewRef, ChatViewPro
146146
const everVisibleMessagesTsRef = useRef<LRUCache<number, boolean>>(
147147
new LRUCache({
148148
max: 250,
149-
ttl: 1000 * 60 * 15, // 1 hour TTL for long-running tasks
149+
ttl: 1000 * 60 * 15, // 15 minutes TTL for long-running tasks
150150
}),
151151
)
152152

0 commit comments

Comments
 (0)