Merge pull request #6847 from edx/mjames/search_setting

Default search engine to None
This commit is contained in:
Martyn James
2015-02-02 08:31:06 -05:00
2 changed files with 2 additions and 2 deletions

View File

@@ -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"

View File

@@ -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"