We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a080b90 commit 99f65ddCopy full SHA for 99f65dd
stress-tests/src/oneMillionUsers/importMillionUsers.ts
@@ -57,7 +57,7 @@ export const importMillionUsers = async (deployment: any) => {
57
}
58
});
59
const count: any = await response.json();
60
- console.log(` Progress: Time=${formatTime(Date.now() - st)}, UsersLeft=${count.count}, Rate=${((lastCount - count.count) / (Date.now() - lastTime)).toFixed(1)}`);
+ console.log(` Progress: Time=${formatTime(Date.now() - st)}, UsersLeft=${count.count}, Rate=${((lastCount - count.count) * 1000 / (Date.now() - lastTime)).toFixed(1)}`);
61
62
if (count.count === 0) {
63
break;
0 commit comments