Misspelling in message

Misspelling in the message: "faild for %(cnt)s times!"
Should be "failed for %(cnt)s times!"
Totally 1 occasion in Ceilometer base code.

Change-Id: Ieb2513968f605e2500187784dbba3e1c8c6dcbdf
This commit is contained in:
hgangwx 2015-12-22 16:52:57 +08:00
parent 95be92eae7
commit dfc4228cf7

View File

@ -63,7 +63,7 @@ class _Base(plugin_base.PollsterBase):
stats = self.read_data(cache) stats = self.read_data(cache)
except nmexcept.IPMIException: except nmexcept.IPMIException:
self.polling_failures += 1 self.polling_failures += 1
LOG.warning(_('Polling %(name)s faild for %(cnt)s times!') LOG.warning(_('Polling %(name)s failed for %(cnt)s times!')
% ({'name': self.NAME, % ({'name': self.NAME,
'cnt': self.polling_failures})) 'cnt': self.polling_failures}))
if (CONF.ipmi.polling_retry >= 0 and if (CONF.ipmi.polling_retry >= 0 and