MCPcopy Index your code
hub / github.com/CodebuffAI/codebuff / setRetryCount

Function setRetryCount

cli/src/hooks/use-activity-query.ts:610–612  ·  view source on GitHub ↗
(queryKey: readonly unknown[], count: number)

Source from the content-addressed store, hash-verified

608 return retryCounts.get(serializeQueryKey(queryKey)) ?? 0
609 },
610 setRetryCount(queryKey: readonly unknown[], count: number): void {
611 retryCounts.set(serializeQueryKey(queryKey), count)
612 },
613 getRetryTimeout(queryKey: readonly unknown[]): ReturnType<typeof setTimeout> | undefined {
614 return retryTimeouts.get(serializeQueryKey(queryKey))
615 },

Callers

nothing calls this directly

Calls 2

serializeQueryKeyFunction · 0.85
setMethod · 0.80

Tested by

no test coverage detected