summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRussell Bryant <rbryant@redhat.com>2013-02-14 11:21:15 -0500
committerRussell Bryant <rbryant@redhat.com>2013-02-14 11:21:15 -0500
commita4de6ce88261c1c36d782597ff7347fce1a9ddef (patch)
treeea14642d3761b44f753adf0178517270ce59c621
parent0b50669946a1eda587290154118fbaf6b455b670 (diff)
downloadnova-a4de6ce88261c1c36d782597ff7347fce1a9ddef.tar.gz
nova-a4de6ce88261c1c36d782597ff7347fce1a9ddef.tar.xz
nova-a4de6ce88261c1c36d782597ff7347fce1a9ddef.zip
Remove a log message in test code.
This log message indicates that this code should only run during testing. The downside is that it does run during testing and can cause a bunch of annoying noise in test logs. Just remove it. Change-Id: I2cc18f3b7871dbfa8859e33225fb7c2bb1ccc53b
-rw-r--r--nova/network/minidns.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/nova/network/minidns.py b/nova/network/minidns.py
index c565f368e..dc9dc6f17 100644
--- a/nova/network/minidns.py
+++ b/nova/network/minidns.py
@@ -168,7 +168,6 @@ class MiniDNS(dns_driver.DNSDriver):
return entries
def delete_dns_file(self):
- LOG.warn(_("This shouldn't be getting called except during testing."))
if os.path.exists(self.filename):
try:
os.remove(self.filename)