From 4e0d0c2c206b7513902fa689a9a2820b23908de1 Mon Sep 17 00:00:00 2001 From: akhoury Date: Sun, 8 Dec 2013 15:16:37 -0500 Subject: [PATCH 1/2] adding error.log .gitignore, winston is that you? --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 6c0c33d689..d3b77831d4 100644 --- a/.gitignore +++ b/.gitignore @@ -16,3 +16,6 @@ provision.sh *.komodoproject feeds/recent.rss + +# winston? +error.log From 05209b01b991e01b17430124f81a296811c01bdd Mon Sep 17 00:00:00 2001 From: akhoury Date: Sun, 8 Dec 2013 15:18:00 -0500 Subject: [PATCH 2/2] setting initialValues for 'global' object closes #635 --- src/upgrade.js | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/src/upgrade.js b/src/upgrade.js index 2cf56f985f..0970bcbcbc 100644 --- a/src/upgrade.js +++ b/src/upgrade.js @@ -236,7 +236,7 @@ Upgrade.upgradeRedis = function(callback) { } if(value === null) { - RDB.hset('global', newKeys[key], 0, next); + RDB.hset('global', newKeys[key], initialValues[key], next); } else { RDB.hset('global', newKeys[key], value, next); } @@ -272,6 +272,19 @@ Upgrade.upgradeRedis = function(callback) { 'totalpostcount':'postCount' }; + var initialValues = { + 'global:next_user_id': 1, + 'next_topic_id': 0, + 'next_gid': 1, + 'notifications:next_nid': 0, + 'global:next_category_id': 12, + 'global:next_message_id': 0, + 'global:next_post_id': 0, + 'usercount': 1, + 'totaltopiccount': 0, + 'totalpostcount': 0 + }; + async.each(keys, updateKeyToHash, function(err) { if(err) { return next(err);