1
0
Code Issues Pull Requests Projects Releases Wiki Activity GitHub Gitee

album,artist请求增加超时时间;小调整

This commit is contained in:
2022-10-29 14:32:51 +08:00
parent bf74284ab2
commit 71eb3b7ce5
8 changed files with 80 additions and 85 deletions

View File

@@ -75,6 +75,7 @@ async function startFetchDetail() {
const threadId = idsToFetch[i];
console.log(`getDetail\t| ${i + 1}/${idsToFetch.length} | threadId: ${threadId}`);
await getDetail(threadId);
// await sleepUtils.sleep(100);
}
}
@@ -158,7 +159,7 @@ async function startFetchRealUrl() {
const urlToFetch = urlsToFetch[i];
console.log(`getRealUrl\t| ${i + 1}/${urlsToFetch.length} | threadId: ${urlToFetch.threadId}`);
await getRealUrl(urlToFetch);
await sleepUtils.sleep(1000);
// await sleepUtils.sleep(100);
}
}