From d155b792e96c0346364172ecc1be13ea794ec4e7 Mon Sep 17 00:00:00 2001 From: John McLear Date: Fri, 8 May 2020 20:17:31 +0000 Subject: [PATCH] migrateDirtyDBtoRealDB: formatting No functional changes. --- bin/migrateDirtyDBtoRealDB.js | 36 +++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/bin/migrateDirtyDBtoRealDB.js b/bin/migrateDirtyDBtoRealDB.js index 086d92b7b..4db869216 100644 --- a/bin/migrateDirtyDBtoRealDB.js +++ b/bin/migrateDirtyDBtoRealDB.js @@ -15,28 +15,28 @@ require("ep_etherpad-lite/node_modules/npm").load({}, function(er,npm) { var ueberDB = require("../src/node_modules/ueberdb2"); var log4js = require("../src/node_modules/log4js"); var dbWrapperSettings = { - "cache": "0", // The cache slows things down when you're mostly writing. - "writeInterval": 0 // Write directly to the database, don't buffer + "cache": "0", // The cache slows things down when you're mostly writing. + "writeInterval": 0 // Write directly to the database, don't buffer }; var db = new ueberDB.database(settings.dbType, settings.dbSettings, dbWrapperSettings, log4js.getLogger("ueberDB")); db.init(function() { - console.log("Waiting for dirtyDB to parse its file."); - dirty.on("load", function(length) { - console.log("Loaded " + length + " records, processing now."); - var remaining = length; - dirty.forEach(function(key, value) { - db.set(key, value, function(error) { - if (typeof error != 'undefined') { - console.log("Unexpected result handling: ", key, value, " was: ", error); - } - remaining -= 1; - var oldremaining = remaining; - if ((oldremaining % 100) == 0) { - console.log("Records not yet flushed to database: ", remaining); - } - }); - }); + console.log("Waiting for dirtyDB to parse its file."); + dirty.on("load", function(length) { + console.log("Loaded " + length + " records, processing now."); + var remaining = length; + dirty.forEach(function(key, value) { + db.set(key, value, function(error) { + if (typeof error != 'undefined') { + console.log("Unexpected result handling: ", key, value, " was: ", error); + } + remaining -= 1; + var oldremaining = remaining; + if ((oldremaining % 100) == 0) { + console.log("Records not yet flushed to database: ", remaining); + } + }); + }); console.log("Please wait for all records to flush to database, then kill this process."); }); });