From 1be7605adafd993c2c4114a9e9ec282ff7a98bf3 Mon Sep 17 00:00:00 2001 From: henryzhx8 Date: Mon, 9 Dec 2024 09:47:35 +0800 Subject: [PATCH] disable cgroup on default (#1946) --- core/application/Application.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/core/application/Application.cpp b/core/application/Application.cpp index 34564e238a..88cb9e5a31 100644 --- a/core/application/Application.cpp +++ b/core/application/Application.cpp @@ -70,10 +70,9 @@ DEFINE_FLAG_INT32(tcmalloc_release_memory_interval, "force release memory held b DEFINE_FLAG_INT32(exit_flushout_duration, "exit process flushout duration", 20 * 1000); DEFINE_FLAG_INT32(queue_check_gc_interval_sec, "30s", 30); #if defined(__ENTERPRISE__) && defined(__linux__) && !defined(__ANDROID__) -DEFINE_FLAG_BOOL(enable_cgroup, "", true); +DEFINE_FLAG_BOOL(enable_cgroup, "", false); #endif - DECLARE_FLAG_BOOL(send_prefer_real_ip); DECLARE_FLAG_BOOL(global_network_success);