Merge pull request #3314 from ryang217/master

Add Mongo 3.2 to list of allowed versions for running database
This commit is contained in:
Nick Winter 2016-01-12 08:42:24 -08:00
commit 02484fd172

View file

@ -71,7 +71,7 @@ def which(cmd, mode=os.F_OK | os.X_OK, path=None):
current_directory = os.path.dirname(os.path.realpath(sys.argv[0]))
allowedMongoVersions = ["v2.6", "v3.0"]
allowedMongoVersions = ["v2.6", "v3.0", "v3.2"]
if which("mongod") and any(i in subprocess.check_output("mongod --version",shell=True) for i in allowedMongoVersions):
mongo_executable = "mongod"
else: