Merge "Changing LOG.warn to LOG.warning"

This commit is contained in:
Jenkins 2016-01-05 01:03:44 +00:00 committed by Gerrit Code Review
commit c35eba83b3
2 changed files with 4 additions and 4 deletions

View File

@ -287,8 +287,8 @@ def retries_on_autoreconnect(func):
break
except errors.AutoReconnect as ex:
LOG.warn(_(u'Caught AutoReconnect, retrying the '
'call to {0}').format(func))
LOG.warning(_(u'Caught AutoReconnect, retrying the '
'call to {0}').format(func))
last_ex = ex
time.sleep(sleep_sec * (2 ** attempt))

View File

@ -210,8 +210,8 @@ def retries_on_connection_error(func):
# MasterNotFoundError.
ex = sys.exc_info()[1]
LOG.warn(_(u'Caught ConnectionError, retrying the '
'call to {0}').format(func))
LOG.warning(_(u'Caught ConnectionError, retrying the '
'call to {0}').format(func))
time.sleep(sleep_sec * (2 ** attempt))
else: