Start gating on H703

Fix the single occurrence in ceilometer
alongway.

Change-Id: Ie55e9dd3fb479a7b623566432fc2e375482ceeca
This commit is contained in:
Dirk Mueller 2013-06-11 20:21:24 +02:00
parent 1103cb5839
commit a7dfb05eed
2 changed files with 5 additions and 5 deletions

View File

@ -70,10 +70,10 @@ class UDPPublisher(publisher.PublisherBase):
for counter in counters:
msg = counter._asdict()
msg['source'] = source
LOG.debug(_("Publishing counter %s over UDP to %s:%d"),
msg,
cfg.CONF.publisher_udp.host,
cfg.CONF.publisher_udp.port)
host = cfg.CONF.publisher_udp.host
port = cfg.CONF.publisher_udp.port
LOG.debug(_("Publishing counter %(msg)s over "
"UDP to %(host)s:%(port)d") % locals())
try:
self.socket.sendto(msgpack.dumps(msg),
(cfg.CONF.publisher_udp.host,

View File

@ -39,7 +39,7 @@ deps = -r{toxinidir}/requirements.txt
commands = {posargs}
[flake8]
ignore = E125,F403,H301,H302,H304,H306,H401,H402,H403,H404,H703
ignore = E125,F403,H301,H302,H304,H306,H401,H402,H403,H404
builtins = _
exclude=.venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,tools,nova_tests
show-source = True