summaryrefslogtreecommitdiff
path: root/jstests/free_mon
diff options
context:
space:
mode:
authorMathew Robinson <chasinglogic@gmail.com>2019-04-10 12:13:03 -0400
committerMathew Robinson <chasinglogic@gmail.com>2019-04-10 19:46:27 -0400
commitd405bf323c8ee7ff07c8ad3c28328b26ec3f727c (patch)
tree5a5b205939403edc13375bc2b272a73595a801b3 /jstests/free_mon
parentfcb3f6a8db7bc45a1f0345c320c9286afa0e4cc8 (diff)
downloadmongo-d405bf323c8ee7ff07c8ad3c28328b26ec3f727c.tar.gz
SERVER-40562 Free Monitoring fails to install required dependencies
Diffstat (limited to 'jstests/free_mon')
-rw-r--r--jstests/free_mon/libs/free_mon.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/jstests/free_mon/libs/free_mon.js b/jstests/free_mon/libs/free_mon.js
index 3b08a905153..6210f58cbf9 100644
--- a/jstests/free_mon/libs/free_mon.js
+++ b/jstests/free_mon/libs/free_mon.js
@@ -23,12 +23,12 @@ class FreeMonWebServer {
* @param {bool} disableFaultsOnStartup optionally disable fault on startup
*/
constructor(fault_type, disableFaultsOnStartup) {
- this.python = "/opt/mongodbtoolchain/v3/bin/python3";
+ this.python = "python3";
this.disableFaultsOnStartup = disableFaultsOnStartup || false;
this.fault_type = fault_type;
if (_isWindows()) {
- const paths = ["c:\\python36\\python.exe", "c:\\python\\python36\\python.exe"];
+ const paths = ["c:\\python37\\python.exe", "c:\\python\\python37\\python.exe"];
for (let p of paths) {
if (fileExists(p)) {
this.python = p;