Set purge interval to 1 hour

This commit is contained in:
Calvin Montgomery 2018-12-05 21:55:44 -08:00
parent aa2348656d
commit b68ed4d77a
2 changed files with 2 additions and 3 deletions

View file

@ -89,8 +89,7 @@ function initAccountCleanup() {
})().catch(error => {
LOGGER.error('Error purging deleted accounts: %s', error.stack);
});
//}, 3600 * 1000);
}, 60 * 1000);
}, 3600 * 1000);
}
module.exports = function (Server) {