summaryrefslogtreecommitdiff
path: root/src/mongo/shell/mongo.js
diff options
context:
space:
mode:
authorMark Benvenuto <mark.benvenuto@mongodb.com>2018-06-11 17:04:50 -0400
committerMark Benvenuto <mark.benvenuto@mongodb.com>2018-06-11 17:04:50 -0400
commit666ae1c0efa1f02f3236ff7f49037c3e06b1eb83 (patch)
treea3efcb17f6daa52c8d809b4c5ad7044c0c482088 /src/mongo/shell/mongo.js
parent76fdcd76e8800afcbb57868fb98a7b6bcda6684c (diff)
downloadmongo-666ae1c0efa1f02f3236ff7f49037c3e06b1eb83.tar.gz
SERVER-34584 Update the default cloud free monitoring endpoint to final location
Diffstat (limited to 'src/mongo/shell/mongo.js')
-rw-r--r--src/mongo/shell/mongo.js8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/mongo/shell/mongo.js b/src/mongo/shell/mongo.js
index 98c5676b554..bfb1e04f7cf 100644
--- a/src/mongo/shell/mongo.js
+++ b/src/mongo/shell/mongo.js
@@ -266,14 +266,6 @@ connect = function(url, user, pass) {
chatty("WARNING: shell and server versions do not match");
}
- // Optionally display free monitoring message.
- const freemonStatus = db.adminCommand({getFreeMonitoringStatus: 1});
- if (freemonStatus.ok) {
- if (freemonStatus.userReminder) {
- chatty(freemonStatus.userReminder);
- }
- }
-
return db;
};