fix: revert low mem treshold

This commit is contained in:
2025-09-16 17:06:14 +02:00
parent 702eec5a13
commit 95a7e3167e

View File

@@ -30,7 +30,7 @@ Config::Config() {
json_doc_size = 1024; json_doc_size = 1024;
// Memory Management // Memory Management
low_memory_threshold_bytes = 100000; // 10KB low_memory_threshold_bytes = 10000; // 10KB
critical_memory_threshold_bytes = 5000; // 5KB critical_memory_threshold_bytes = 5000; // 5KB
max_concurrent_http_requests = 3; max_concurrent_http_requests = 3;
} }