(queryKey: readonly unknown[])
| 622 | setQueryFetching(serializeQueryKey(queryKey), fetching) |
| 623 | }, |
| 624 | getInFlight(queryKey: readonly unknown[]): boolean { |
| 625 | return inFlight.has(serializeQueryKey(queryKey)) |
| 626 | }, |
| 627 | /** |
| 628 | * Simulate the exact retry scheduling logic from doFetch's catch block. |
| 629 | * This reproduces the code path that caused the infinite retry loop bug. |
nothing calls this directly
no test coverage detected