Merge pull request #692 from guardicore/mongo_requirement_fix

Changed minimum mongodb version required
This commit is contained in:
Shay Nehmad 2020-06-25 10:59:17 +03:00 committed by GitHub
commit f34a607f15
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ import time
import logging
from threading import Thread
MINIMUM_MONGO_DB_VERSION_REQUIRED = "3.6.0"
MINIMUM_MONGO_DB_VERSION_REQUIRED = "4.2.0"
BASE_PATH = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))