diff options
| author | Jenkins <jenkins@review.openstack.org> | 2012-03-29 17:27:14 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2012-03-29 17:27:14 +0000 |
| commit | f0cb9083057dcf89affc64cc0c4b6d6a7ccade41 (patch) | |
| tree | 978024bb53c318ec0af9183f919f5d678f96e979 /nova | |
| parent | e7068fd481f6cb887da3a8488435d7c911539bb2 (diff) | |
| parent | 9b1bbc330fbd02caf8008e40551460c164543e3d (diff) | |
| download | nova-f0cb9083057dcf89affc64cc0c4b6d6a7ccade41.tar.gz nova-f0cb9083057dcf89affc64cc0c4b6d6a7ccade41.tar.xz nova-f0cb9083057dcf89affc64cc0c4b6d6a7ccade41.zip | |
Merge "When dnsmasq fails to HUP log an error."
Diffstat (limited to 'nova')
| -rwxr-xr-x | nova/network/linux_net.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/network/linux_net.py b/nova/network/linux_net.py index 7258e627a..2c81f71f0 100755 --- a/nova/network/linux_net.py +++ b/nova/network/linux_net.py @@ -687,7 +687,7 @@ def restart_dhcp(context, dev, network_ref): _execute('kill', '-HUP', pid, run_as_root=True) return except Exception as exc: # pylint: disable=W0703 - LOG.debug(_('Hupping dnsmasq threw %s'), exc) + LOG.error(_('Hupping dnsmasq threw %s'), exc) else: LOG.debug(_('Pid %d is stale, relaunching dnsmasq'), pid) |
