We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a38e8ea commit be2348aCopy full SHA for be2348a
1 file changed
packages/api/src/routes/subgraphs.ts
@@ -294,7 +294,7 @@ const MAX_CONCURRENT_OPERATIONS = 2;
294
export const activeAbortControllers = new Map<string, AbortController>();
295
296
export function abortAllOperations(reason: string): void {
297
- for (const [name, controller] of activeAbortControllers) {
+ for (const [, controller] of activeAbortControllers) {
298
controller.abort(reason);
299
}
300
0 commit comments