fix
This commit is contained in:
parent
9098dea10c
commit
bfed322367
1 changed files with 1 additions and 1 deletions
2
site.js
2
site.js
|
@ -58,7 +58,7 @@ async function siteCollector(user, path, site) {
|
||||||
|
|
||||||
for (let u of users) {
|
for (let u of users) {
|
||||||
let it = 0;
|
let it = 0;
|
||||||
while (p.length >= process.env.maxRate || 15) {
|
while (p.length >= (process.env.maxRate || 15)) {
|
||||||
p = p.filter(x => x != 'hi');
|
p = p.filter(x => x != 'hi');
|
||||||
if (p.length == 0) break;
|
if (p.length == 0) break;
|
||||||
let pv = await Promise.any(p);
|
let pv = await Promise.any(p);
|
||||||
|
|
Loading…
Reference in a new issue