Skip to content

Commit

Permalink
Version bump & fix styleguide issues
Browse files Browse the repository at this point in the history
  • Loading branch information
wulfsolter committed Feb 3, 2016
1 parent 9579497 commit e4cafd2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion config.default.js
Expand Up @@ -22,9 +22,9 @@ if (process.env.VCAP_SERVICES) {
host: 'localhost',
password: 'pass',
port: 27017,
ssl: false,
url: '"mongodb://localhost:27017/db',
username: 'admin',
ssl: false
};
}

Expand Down
2 changes: 1 addition & 1 deletion lib/db.js
Expand Up @@ -11,7 +11,7 @@ let connect = function(config) {
let dbOptions = {
auto_reconnect: config.mongodb.autoReconnect,
poolSize: config.mongodb.poolSize,
ssl: config.mongodb.useSSL
ssl: config.mongodb.useSSL,
};

let db;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -17,7 +17,7 @@
"UI",
"web-based"
],
"version": "0.30.5",
"version": "0.30.6",
"bin": {
"mongo-express": "./app.js"
},
Expand Down

0 comments on commit e4cafd2

Please sign in to comment.