summaryrefslogtreecommitdiffstats
path: root/bin/nova-compute
diff options
context:
space:
mode:
authorVishvananda Ishaya <vishvananda@gmail.com>2010-07-21 08:46:53 -0500
committerVishvananda Ishaya <vishvananda@gmail.com>2010-07-21 08:46:53 -0500
commit2d49a870fe89b3266f908a5711a5d412fa6d7a19 (patch)
treea6ae93cf9d154b855a923f14b860935eee5dde7f /bin/nova-compute
parent0cf417c9e9c48352ea11c2333794545467585542 (diff)
downloadnova-2d49a870fe89b3266f908a5711a5d412fa6d7a19.tar.gz
nova-2d49a870fe89b3266f908a5711a5d412fa6d7a19.tar.xz
nova-2d49a870fe89b3266f908a5711a5d412fa6d7a19.zip
remove all of the unused saved return values from attach_to_twisted
Diffstat (limited to 'bin/nova-compute')
-rwxr-xr-xbin/nova-compute4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/nova-compute b/bin/nova-compute
index 4b559beb4..49710e1b3 100755
--- a/bin/nova-compute
+++ b/bin/nova-compute
@@ -74,8 +74,8 @@ def main():
pulse = task.LoopingCall(n.report_state, FLAGS.node_name, bin_name)
pulse.start(interval=FLAGS.compute_report_state_interval, now=False)
- injected = consumer_all.attach_to_twisted()
- injected = consumer_node.attach_to_twisted()
+ consumer_all.attach_to_twisted()
+ consumer_node.attach_to_twisted()
# This is the parent service that twistd will be looking for when it
# parses this file, return it so that we can get it into globals below