From c75088a26da80839a115d28483b74ee8d3ee298b Mon Sep 17 00:00:00 2001 From: James Smith Date: Mon, 21 Oct 2024 14:06:01 +0100 Subject: [PATCH] turn off jemalloc stats --- docker/runtime.dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/runtime.dockerfile b/docker/runtime.dockerfile index 99ae24bf7..0fe4ad031 100644 --- a/docker/runtime.dockerfile +++ b/docker/runtime.dockerfile @@ -50,7 +50,7 @@ COPY --from=build \ # Set up jemalloc and YJIT for performance ENV LD_PRELOAD="libjemalloc.so.2" -ENV MALLOC_CONF="dirty_decay_ms:1000,narenas:2,background_thread:true,stats_print:true" +ENV MALLOC_CONF="dirty_decay_ms:1000,narenas:2,background_thread:true" ENV RUBY_YJIT_ENABLE="1" ARG APP_VERSION