summaryrefslogtreecommitdiffstats
path: root/nova
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2013-04-09 15:22:23 +0000
committerGerrit Code Review <review@openstack.org>2013-04-09 15:22:23 +0000
commit247feeae3f2abb7fa5729be03371b934a8a8a394 (patch)
tree8f95b2b18f1a40d7c8e6853f548ca58cb894a336 /nova
parent98a72970bbedc4ca74359d81e5928f65377963b1 (diff)
parent7d14d024f0d92cd6f9596596cdcaf3d870ba1839 (diff)
downloadnova-247feeae3f2abb7fa5729be03371b934a8a8a394.tar.gz
nova-247feeae3f2abb7fa5729be03371b934a8a8a394.tar.xz
nova-247feeae3f2abb7fa5729be03371b934a8a8a394.zip
Merge "Security groups may be unavailable"
Diffstat (limited to 'nova')
-rw-r--r--nova/network/security_group/quantum_driver.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/nova/network/security_group/quantum_driver.py b/nova/network/security_group/quantum_driver.py
index aecafe8d1..1c49da5e3 100644
--- a/nova/network/security_group/quantum_driver.py
+++ b/nova/network/security_group/quantum_driver.py
@@ -101,8 +101,7 @@ class SecurityGroupAPI(security_group_base.SecurityGroupBase):
group = quantum.show_security_group(id).get('security_group')
except q_exc.QuantumClientException as e:
if e.status_code == 404:
- LOG.exception(_("Quantum Error getting security group %s"),
- name)
+ LOG.debug(_("Quantum security group %s not found"), name)
self.raise_not_found(e.message)
else:
LOG.error(_("Quantum Error: %s"), e)
@@ -237,8 +236,7 @@ class SecurityGroupAPI(security_group_base.SecurityGroupBase):
id).get('security_group_rule')
except q_exc.QuantumClientException as e:
if e.status_code == 404:
- LOG.exception(_("Quantum Error getting security group rule "
- "%s.") % id)
+ LOG.debug(_("Quantum security group rule %s not found"), id)
self.raise_not_found(e.message)
else:
LOG.error(_("Quantum Error: %s"), e)