From 082c120f86507b5ea6f29c7443149817307501a5 Mon Sep 17 00:00:00 2001 From: ansuz Date: Thu, 1 Oct 2020 16:04:51 +0530 Subject: [PATCH] lint compliance --- scripts/evict-inactive.js | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/scripts/evict-inactive.js b/scripts/evict-inactive.js index 765ed2d6d..91b7dad63 100644 --- a/scripts/evict-inactive.js +++ b/scripts/evict-inactive.js @@ -63,13 +63,6 @@ var prepareEnv = function (Env, cb) { }); }; -var shutdown = function (Env) { - // the store will keep this script running if you don't shut it down - //Env.store.shutdown(); - //Env.Log.shutdown(); - //Env.pinStore.shutdown(); -}; - nThen(function (w) { // load database adaptors and configuration values into the environment prepareEnv(Env, w(function () { @@ -80,7 +73,4 @@ nThen(function (w) { Eviction(Env, w(function () { })); -}).nThen(function () { - // shut down database adaptors - shutdown(Env); });