aboutsummaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
Diffstat (limited to 'build')
-rw-r--r--build/database.js8
-rw-r--r--build/hypixelApi.js1
2 files changed, 7 insertions, 2 deletions
diff --git a/build/database.js b/build/database.js
index d228057..55c86eb 100644
--- a/build/database.js
+++ b/build/database.js
@@ -504,15 +504,19 @@ async function removeBadMemberLeaderboardAttributes() {
/** Fetch all the leaderboards, used for caching. Don't call this often! */
async function fetchAllLeaderboards(fast) {
const leaderboards = await fetchAllMemberLeaderboardAttributes();
+ if (_1.debug)
+ console.debug('Caching raw leaderboards!');
+ for (const leaderboard of util_1.shuffle(leaderboards))
+ await fetchMemberLeaderboardRaw(leaderboard);
// shuffle so if the application is restarting many times itll still be useful
if (_1.debug)
console.debug('Caching leaderboards!');
for (const leaderboard of util_1.shuffle(leaderboards)) {
if (!fast)
// wait 2 seconds so it doesnt use as much ram
- await util_1.sleep(2 * 1000);
+ await util_1.sleep(10 * 1000);
else
- await util_1.sleep(500);
+ await util_1.sleep(2 * 1000);
await fetchMemberLeaderboard(leaderboard);
}
if (_1.debug)
diff --git a/build/hypixelApi.js b/build/hypixelApi.js
index 9f54ef2..15c8817 100644
--- a/build/hypixelApi.js
+++ b/build/hypixelApi.js
@@ -55,6 +55,7 @@ async function sendApiRequest({ path, key, args }) {
let fetchResponse;
let fetchJsonParsed;
try {
+ console.log(fetchUrl);
fetchResponse = await node_fetch_1.default(fetchUrl, { agent: () => httpsAgent });
fetchJsonParsed = await fetchResponse.json();
}