Skip to content
This repository has been archived by the owner on May 6, 2024. It is now read-only.

Commit

Permalink
Updated edxapp Elasticsearch config
Browse files Browse the repository at this point in the history
The urllib3 library (used by the Elasticsearch Python library) expects ports to be integers, not strings, when passed as kwargs. Thus, we set the port to be an integer in Ansible.
  • Loading branch information
clintonb authored and Clinton Blackburn committed May 31, 2017
1 parent cbdaec2 commit b145fda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion playbooks/roles/edxapp/defaults/main.yml
Expand Up @@ -97,7 +97,7 @@ EDXAPP_MYSQL_HOST: 'localhost'
EDXAPP_MYSQL_PORT: '3306'

EDXAPP_SEARCH_HOST: 'localhost'
EDXAPP_SEARCH_PORT: '9200'
EDXAPP_SEARCH_PORT: 9200

# list of dictionaries of the format
# { 'host': 'hostname', 'port': 'portnumber', 'otherconfigsuchas use_ssl': 'True' }
Expand Down

0 comments on commit b145fda

Please sign in to comment.