Add version 5.0.3

This commit adds version 5.0.3 and the BWC indices for version 5.0.2.

Relates elastic/elasticsearch#4211

Original commit: elastic/x-pack-elasticsearch@a0c83a0b92
This commit is contained in:
Jason Tedor 2016-11-29 16:15:05 -05:00
parent f19be18b20
commit 3da81aa922
2 changed files with 1 additions and 1 deletions

View File

@ -338,7 +338,7 @@ def wait_for_monitoring_index_to_fill(client, version):
else:
monitoring_name = '.monitoring-*'
def wait_for_monitoring_to_index(doc_type, count):
logging.info('Waiting for %s to have cout(%s) = %s...' % (monitoring_name, doc_type, count))
logging.info('Waiting for %s to have count(%s) = %s...' % (monitoring_name, doc_type, count))
wait_for_search(count, lambda:
client.search(index=monitoring_name, doc_type=doc_type, body={"query": {"match_all": {}}}))