From 14353155a2d38ccc45e544d1d086eaffbaeeafcc Mon Sep 17 00:00:00 2001 From: Moe Date: Wed, 2 Oct 2019 22:52:15 -0700 Subject: [PATCH] default autoDropCache to false --- libs/config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/config.js b/libs/config.js index 518885f1..10d1e6fb 100644 --- a/libs/config.js +++ b/libs/config.js @@ -11,7 +11,7 @@ module.exports = function(s){ //config defaults if(config.cpuUsageMarker === undefined){config.cpuUsageMarker='%Cpu'} if(config.customCpuCommand === undefined){config.customCpuCommand=null} - if(config.autoDropCache === undefined){config.autoDropCache=true} + if(config.autoDropCache === undefined){config.autoDropCache=false} if(config.doSnapshot === undefined){config.doSnapshot=true} if(config.restart === undefined){config.restart={}} if(config.systemLog === undefined){config.systemLog=true}