From a0860abaaaf2a50f50b14166bd6880279e6d9517 Mon Sep 17 00:00:00 2001 From: Julian Lam Date: Sun, 30 Nov 2014 16:49:53 -0500 Subject: [PATCH] no need to set bcrypt_rounds, only used in one place. --- app.js | 1 - 1 file changed, 1 deletion(-) diff --git a/app.js b/app.js index de6b9a71fb..10a43767d3 100644 --- a/app.js +++ b/app.js @@ -110,7 +110,6 @@ function start() { // nconf defaults, if not set in config if (!nconf.get('upload_path')) nconf.set('upload_path', '/public/uploads'); - if (!nconf.get('bcrypt_rounds')) nconf.set('bcrypt_rounds', 12); // Parse out the relative_url and other goodies from the configured URL var urlObject = url.parse(nconf.get('url')); nconf.set('use_port', !!urlObject.port);