1
0
Fork 0

replace inaccurate proc count with remaining procs

This commit is contained in:
lightling 2024-02-28 17:54:27 -05:00
parent a76a393a12
commit 804b1cefc2

View file

@ -49,9 +49,9 @@ export const getMany = (userDb, threadMax, directory, mode) => new Promise((reso
const checkError = (currentIndex, type, codeOrError) => {
userDb[currentIndex].logs.push(codeOrError.toString());
if (typeof codeOrError === 'number' && userDb[currentIndex].running === mode) {
userDb[currentIndex].running = false;
userDb[currentIndex].running = `finished ${mode}`;
--running;
log(ctx, `Finished (via ${type}) ${userDb[currentIndex].user} under ${mode} mode. ${running} processes still running.`);
log(ctx, `Finished (via ${type}) ${userDb[currentIndex].user} under ${mode} mode. ${userDb.filter(elem => elem.running !== `finished ${mode}`).length} users left.`);
get();
}
};