Replace xrange() with range() in six.moves

range maps to xrange() and range() in python2 and python3 respectively.

TrivialFix
Change-Id: I9b2477a17a570c3ce945badacbfa44889c0634a9
This commit is contained in:
Wanlong Gao 2016-01-05 20:07:08 +08:00
parent 7575ac4a49
commit 7f001265e7

View File

@ -37,6 +37,7 @@ from oslo_config import cfg
from oslo_config import types
from requests.exceptions import ConnectionError
import six
from six.moves import range
logging.basicConfig()
LOG = logging.getLogger(__name__)
@ -134,7 +135,7 @@ class WorkerThread(Thread):
while True:
try:
image = self.queue.get()
for _ in six.moves.range(self.conf.retries + 1):
for _ in range(self.conf.retries + 1):
self.builder(image)
if image['status'] in ['built', 'unmatched',
'parent_error']:
@ -757,12 +758,12 @@ def main():
queue = kolla.build_queue()
push_queue = six.moves.queue.Queue()
for x in six.moves.xrange(conf.threads):
for x in range(conf.threads):
worker = WorkerThread(queue, push_queue, conf)
worker.setDaemon(True)
worker.start()
for x in six.moves.xrange(conf.push_threads):
for x in range(conf.push_threads):
push_thread = PushThread(conf, push_queue)
push_thread.start()