change how redistogo install works

This commit is contained in:
John Crepezzi 2012-09-27 11:50:12 -04:00
commit 8f0d6260b0
2 changed files with 3 additions and 1 deletions

View file

@ -36,7 +36,8 @@ if (!config.storage.type) {
}
var Store, preferredStore;
if (config.storage.type === 'redistogo') {
if (process.env.REDISTOGO_URL) {
var redisClient = require('redis-url').connect(process.env.REDISTOGO_URL);
Store = require('./lib/document_stores/redis');
preferredStore = new Store(config.storage, redisClient);