diff options
| author | Sandy Walsh <sandy.walsh@rackspace.com> | 2011-06-29 20:02:30 -0700 |
|---|---|---|
| committer | Sandy Walsh <sandy.walsh@rackspace.com> | 2011-06-29 20:02:30 -0700 |
| commit | fbe296a7ab3bf1b9ee2bf765d13b5675ff4d6295 (patch) | |
| tree | 613f78a70c182fb34a4e1359281d5b84ef3c3629 | |
| parent | 76a0aca9351f0888a75ec743369e488b7cc6dba4 (diff) | |
| download | nova-fbe296a7ab3bf1b9ee2bf765d13b5675ff4d6295.tar.gz nova-fbe296a7ab3bf1b9ee2bf765d13b5675ff4d6295.tar.xz nova-fbe296a7ab3bf1b9ee2bf765d13b5675ff4d6295.zip | |
clean up
| -rw-r--r-- | nova/api/openstack/wsgi.py | 1 | ||||
| -rw-r--r-- | nova/compute/manager.py | 1 | ||||
| -rw-r--r-- | nova/scheduler/driver.py | 5 |
3 files changed, 0 insertions, 7 deletions
diff --git a/nova/api/openstack/wsgi.py b/nova/api/openstack/wsgi.py index 836a13b62..5b6e3cb1d 100644 --- a/nova/api/openstack/wsgi.py +++ b/nova/api/openstack/wsgi.py @@ -394,5 +394,4 @@ class Resource(wsgi.Application): """Find action-spefic method on controller and call it.""" controller_method = getattr(self.controller, action) - print "DISPATCHING", self.controller, action return controller_method(req=request, **action_args) diff --git a/nova/compute/manager.py b/nova/compute/manager.py index 78c98cf42..d5530c296 100644 --- a/nova/compute/manager.py +++ b/nova/compute/manager.py @@ -1183,7 +1183,6 @@ class ComputeManager(manager.SchedulerDependentManager): :returns: See driver.update_available_resource() """ - print "UPDATE AVAILABLE" return self.driver.update_available_resource(context, self.host) def pre_live_migration(self, context, instance_id, time=None): diff --git a/nova/scheduler/driver.py b/nova/scheduler/driver.py index db392a607..ec2c9ef78 100644 --- a/nova/scheduler/driver.py +++ b/nova/scheduler/driver.py @@ -30,7 +30,6 @@ from nova import log as logging from nova import rpc from nova import utils from nova.compute import power_state -from nova.notifier import api as notifier_api FLAGS = flags.FLAGS @@ -49,10 +48,6 @@ class WillNotSchedule(exception.Error): pass -def publisher_id(host=None): - return notifier_api.publisher_id("scheduler", host) - - class Scheduler(object): """The base class that all Scheduler clases should inherit from.""" |
