diff options
| author | Jenkins <jenkins@review.openstack.org> | 2012-08-01 15:50:43 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2012-08-01 15:50:43 +0000 |
| commit | 3a35d9c03dedee38f2de367de5f67846a24da490 (patch) | |
| tree | b09e0f4638cc30365574c0f8b4b1c0317a03b029 /nova/compute | |
| parent | 56a5ba1170783cb968db76f16ef2217bac7a1272 (diff) | |
| parent | 5e7275f5bca9c7c6f30a442c3bd2b66eba19fe04 (diff) | |
Merge "Fix get_diagnostics RPC arg ordering."
Diffstat (limited to 'nova/compute')
| -rw-r--r-- | nova/compute/manager.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/compute/manager.py b/nova/compute/manager.py index d80781c73..cdb68dcca 100644 --- a/nova/compute/manager.py +++ b/nova/compute/manager.py @@ -1770,7 +1770,7 @@ class ComputeManager(manager.SchedulerDependentManager): @exception.wrap_exception(notifier=notifier, publisher_id=publisher_id()) @wrap_instance_fault - def get_diagnostics(self, context, instance_uuid=None, instance=None): + def get_diagnostics(self, context, instance=None, instance_uuid=None): """Retrieve diagnostics for an instance on this host.""" if not instance: instance = self.db.instance_get_by_uuid(context, instance_uuid) |
