diff --git a/elasticRecheck.conf.sample b/elasticRecheck.conf.sample index bf7bff3e..39ccdc37 100644 --- a/elasticRecheck.conf.sample +++ b/elasticRecheck.conf.sample @@ -13,6 +13,6 @@ query_file=/home/mtreinish/elasticRecheck/queries key=/home/mtreinish/.ssh/id_rsa [data_source] -es_url=http://logstash.openstack.org/elasticsearch +es_url=http://logstash.openstack.org:80/elasticsearch ls_url=http://logstash.openstack.org db_uri=mysql+pymysql://query:query@logstash.openstack.org/subunit2sql diff --git a/elastic_recheck/bot.py b/elastic_recheck/bot.py index 0acfec20..b498a8bb 100755 --- a/elastic_recheck/bot.py +++ b/elastic_recheck/bot.py @@ -319,7 +319,7 @@ def _main(args, config): config.get('gerrit', 'key'), not args.nocomment, config.get('data_source', 'es_url', - 'http://logstash.openstack.org/elasticsearch'), + 'http://logstash.openstack.org:80/elasticsearch'), config.get('data_source', 'db_uri', 'mysql+pymysql://query:query@logstash.openstack.org/' 'subunit2sql'), diff --git a/elastic_recheck/elasticRecheck.py b/elastic_recheck/elasticRecheck.py index 732c83af..88b57271 100644 --- a/elastic_recheck/elasticRecheck.py +++ b/elastic_recheck/elasticRecheck.py @@ -28,7 +28,7 @@ import elastic_recheck.loader as loader import elastic_recheck.query_builder as qb from elastic_recheck import results -ES_URL = 'http://logstash.openstack.org/elasticsearch' +ES_URL = 'http://logstash.openstack.org:80/elasticsearch' LS_URL = 'http://logstash.openstack.org' DB_URI = 'mysql+pymysql://query:query@logstash.openstack.org/subunit2sql'