change url to use elastic organization

This commit is contained in:
Martijn van Groningen 2015-03-23 12:00:28 +01:00
parent 4970e3e225
commit 911f522a0e

@ -269,7 +269,7 @@ def ensure_no_open_tickets(version):
try:
log('Checking for open tickets on Github for version %s' % version)
log('Check if node is available')
conn.request('GET', '/repos/elasticsearch/elasticsearch/issues?state=open&labels=%s' % version, headers= {'User-Agent' : 'Elasticsearch version checker'})
conn.request('GET', '/repos/elastic/elasticsearch/issues?state=open&labels=%s' % version, headers= {'User-Agent' : 'Elasticsearch version checker'})
res = conn.getresponse()
if res.status == 200:
issues = json.loads(res.read().decode("utf-8"))