diff --git a/package.json b/package.json index 5c44bad3b8f..aa29b6a6aee 100644 --- a/package.json +++ b/package.json @@ -147,8 +147,8 @@ "moment": "^2.10.6", "mongodb": "^2.2.8", "mongodb-collection-model": "^0.3.1", - "mongodb-connection-model": "^6.3.5", - "mongodb-data-service": "^2.12.2", + "mongodb-connection-model": "^6.4.2", + "mongodb-data-service": "^2.12.3", "mongodb-database-model": "^0.1.2", "mongodb-explain-plan-model": "^0.2.2", "mongodb-extended-json": "^1.9.0", diff --git a/src/app/connect/index.js b/src/app/connect/index.js index c09cf774b5e..63e7c588477 100644 --- a/src/app/connect/index.js +++ b/src/app/connect/index.js @@ -300,10 +300,6 @@ var ConnectView = View.extend({ if (this.clipboardText.match(/[?&]ssl=true/i)) { this.connection.ssl = 'SYSTEMCA'; } - // if we connect to an Atlas instance, use SYSTEMCA as SSL option - if (this.connection.hostname.match(/mongodb.net$/i)) { - this.connection.ssl = 'SYSTEMCA'; - } this.updateForm(); // @note: durran: This fixes not being able to save a new favorite // from a collection that was auto-filled from the clipboard. Needed