replace inaccurate proc count with remaining procs
This commit is contained in:
parent
a76a393a12
commit
804b1cefc2
1 changed files with 2 additions and 2 deletions
|
@ -49,9 +49,9 @@ export const getMany = (userDb, threadMax, directory, mode) => new Promise((reso
|
||||||
const checkError = (currentIndex, type, codeOrError) => {
|
const checkError = (currentIndex, type, codeOrError) => {
|
||||||
userDb[currentIndex].logs.push(codeOrError.toString());
|
userDb[currentIndex].logs.push(codeOrError.toString());
|
||||||
if (typeof codeOrError === 'number' && userDb[currentIndex].running === mode) {
|
if (typeof codeOrError === 'number' && userDb[currentIndex].running === mode) {
|
||||||
userDb[currentIndex].running = false;
|
userDb[currentIndex].running = `finished ${mode}`;
|
||||||
--running;
|
--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();
|
get();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue