diff options
author | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-10-12 21:53:57 +0200 |
---|---|---|
committer | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-10-12 21:53:57 +0200 |
commit | b0385e0fcbf6ac1cae46979cc495081319fd4dec (patch) | |
tree | c95199efa3ef5e76f39dc9bbf32f72f48642eb7c /bundle | |
parent | :zap: benchmark tests (diff) | |
download | server-b0385e0fcbf6ac1cae46979cc495081319fd4dec.tar.xz |
:zap: improve memory managment
Diffstat (limited to 'bundle')
-rw-r--r-- | bundle/src/stats.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bundle/src/stats.ts b/bundle/src/stats.ts index 18bb85ca..7928de89 100644 --- a/bundle/src/stats.ts +++ b/bundle/src/stats.ts @@ -31,5 +31,6 @@ export function initStats() { process.memoryUsage().rss / 1024 / 1024 )}mb/${memory.totalMemMb.toFixed(0)}mb ${networkUsage}` ); - }, 1000 * 10); + // TODO: node-os-utils might have a memory leak, more investigation needed + }, 1000 * 60 * 5); } |