diff --git a/cms/envs/common.py b/cms/envs/common.py index 071091b948..9404427b0f 100644 --- a/cms/envs/common.py +++ b/cms/envs/common.py @@ -873,7 +873,7 @@ FILES_AND_UPLOAD_TYPE_FILTERS = { } # Default to no Search Engine -SEARCH_ENGINE = "search.tests.mock_search_engine.MockSearchEngine" +SEARCH_ENGINE = None ELASTIC_FIELD_MAPPINGS = { "start_date": { "type": "date" diff --git a/lms/envs/common.py b/lms/envs/common.py index 0262935756..5d6af295df 100644 --- a/lms/envs/common.py +++ b/lms/envs/common.py @@ -2014,6 +2014,6 @@ PDF_RECEIPT_COBRAND_LOGO_PATH = PROJECT_ROOT + '/static/images/default-theme/log PDF_RECEIPT_COBRAND_LOGO_HEIGHT_MM = 12 # Use None for the default search engine -SEARCH_ENGINE = "search.tests.mock_search_engine.MockSearchEngine" +SEARCH_ENGINE = None # Use the LMS specific result processor SEARCH_RESULT_PROCESSOR = "lms.lib.courseware_search.lms_result_processor.LmsSearchResultProcessor"