From 709be020364f37a6cb93ab7bc0f01029f2f95005 Mon Sep 17 00:00:00 2001 From: SDCore Date: Wed, 25 Feb 2026 21:03:45 -0600 Subject: [PATCH 1/2] Garbage Collection Stuff --- src/Atlas.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/Atlas.js b/src/Atlas.js index 2426a0f..98203ef 100644 --- a/src/Atlas.js +++ b/src/Atlas.js @@ -34,9 +34,7 @@ async function deleteOldMessageData() { const timeSince = Math.floor(DateTime.now().minus({ hours: 12 }).toSeconds()); // Run bun GC for testing - Bun.gc(true).then(() => { - console.log('running bun gc'); - }); + Bun.gc(true); await dbConnection`SELECT COUNT(*) FROM atlas_mod_ping_message_data WHERE timestamp <= ${timeSince}` .then(async timeSinceCountRow => { From 3a92e950787b681df5a2f5a03700c86e6d953744 Mon Sep 17 00:00:00 2001 From: SDCore Date: Wed, 25 Feb 2026 21:03:49 -0600 Subject: [PATCH 2/2] 0.5.1-1 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 6f24b54..486431c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "atlas", - "version": "0.5.1", + "version": "0.5.1-1", "description": "", "main": "src/Atlas.js", "scripts": {