fix level2mongo

This commit is contained in:
Matias Alejo Garcia 2015-04-28 14:48:34 -03:00
parent 25cbf5ddbd
commit 1e0c45aefc
1 changed files with 14 additions and 12 deletions

View File

@ -10,22 +10,24 @@ var level = new LevelStorage({
var mongo = new MongoStorage();
mongo.connect({
host: 'localhost',
port: '27017'
}, function(err) {
if (err) throw err;
mongo.db.dropDatabase(function(err) {
mongoDb: {
uri: 'mongodb://localhost:27017/bws',
}
},
function(err) {
if (err) throw err;
run(function(err) {
mongo.db.dropDatabase(function(err) {
if (err) throw err;
console.log('All data successfully migrated');
process.exit(0);
// mongo._dump(function() {
// process.exit(0);
// });
run(function(err) {
if (err) throw err;
console.log('All data successfully migrated');
process.exit(0);
// mongo._dump(function() {
// process.exit(0);
// });
});
});
});
});
function run(cb) {