summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSoren Hansen <soren@linux2go.dk>2011-07-26 11:04:53 -0700
committerSoren Hansen <soren@linux2go.dk>2011-07-26 11:04:53 -0700
commit3841a5515807b42e2e74e3119f76cdb2ef0f5575 (patch)
tree1f0eaef02e4ad4f96c44b9de38d6a054892aec0b
parent1aea5e1efa50f9b259a934fabd409fe39026f876 (diff)
Remove debugging code.
-rw-r--r--nova/compute/api.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/nova/compute/api.py b/nova/compute/api.py
index 65a594d2c..ad8886f23 100644
--- a/nova/compute/api.py
+++ b/nova/compute/api.py
@@ -475,7 +475,6 @@ class API(base.Base):
context,
group_id))
- LOG.info('rules: %r', security_group_rules)
# ..then we distill the security groups to which they belong..
security_groups = set()
for rule in security_group_rules:
@@ -484,14 +483,12 @@ class API(base.Base):
rule['parent_group_id'])
security_groups.add(security_group)
- LOG.info('security_groups: %r', security_groups)
# ..then we find the instances that are members of these groups..
instances = set()
for security_group in security_groups:
for instance in security_group['instances']:
instances.add(instance)
- LOG.info('instances: %r', instances)
# ...then we find the hosts where they live...
hosts = set()
for instance in instances:
@@ -501,7 +498,6 @@ class API(base.Base):
# ...and finally we tell these nodes to refresh their view of this
# particular security group.
for host in hosts:
- LOG.info('host: %r', host)
rpc.cast(context,
self.db.queue_get_for(context, FLAGS.compute_topic, host),
{"method": "refresh_security_group_members",