We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8bdd4cd commit e448322Copy full SHA for e448322
src/dataloader.ts
@@ -166,8 +166,8 @@ export abstract class Loader {
166
}
167
return outputPath;
168
})();
169
- command.finally(() => runningCommands.delete(this.path)).catch(() => {});
170
- runningCommands.set(this.path, command);
+ command.finally(() => runningCommands.delete(key)).catch(() => {});
+ runningCommands.set(key, command);
171
172
effects.output.write(`${cyan("load")} ${this.path} ${faint("→")} `);
173
const start = performance.now();
0 commit comments