From eeda6155c058ba5d23a61407367bb74c56fbb088 Mon Sep 17 00:00:00 2001 From: Niko Date: Thu, 1 Feb 2024 19:36:06 -0700 Subject: [PATCH] Actually call `spawn_malloc_trim` --- scripty_core/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripty_core/src/lib.rs b/scripty_core/src/lib.rs index ea259b7..6a511aa 100644 --- a/scripty_core/src/lib.rs +++ b/scripty_core/src/lib.rs @@ -15,6 +15,8 @@ use url::Url; pub fn start() { load_config(); + spawn_malloc_trim(); + let rt = get_tokio_rt(); rt.block_on(init_logging());