From 18f02d1056d0d114659f03e6431635a9af621efb Mon Sep 17 00:00:00 2001 From: Lloyd Hilaiel <lloyd@hilaiel.com> Date: Tue, 29 Nov 2011 16:46:47 -0700 Subject: [PATCH] tiny optimization to test running. don't have the script that checks for db connectivity create any tables --- scripts/test_db_connectivity.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/test_db_connectivity.js b/scripts/test_db_connectivity.js index acdfdad02..a01114cd8 100755 --- a/scripts/test_db_connectivity.js +++ b/scripts/test_db_connectivity.js @@ -9,6 +9,9 @@ db = require('../lib/db.js'); var dbCfg = configuration.get('database'); +// don't bother creating the schema +delete dbCfg.create_schema; + db.open(dbCfg, function (r) { function end() { process.exit(r === undefined ? 0 : 1); } if (r === undefined) db.close(end); -- GitLab