lint compliance

This commit is contained in:
ansuz 2020-10-01 16:04:51 +05:30
parent 898ccf6af0
commit 082c120f86
1 changed files with 0 additions and 10 deletions

View File

@ -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);
});