diff options
| author | Brian Waldon <bcwaldon@gmail.com> | 2012-05-04 14:36:52 -0700 |
|---|---|---|
| committer | Brian Waldon <bcwaldon@gmail.com> | 2012-05-08 09:25:46 -0700 |
| commit | 99f3822fd3341eecb4bc8d699b9721fdf59aeee8 (patch) | |
| tree | fdd287c16686c02d248720028cfc7e222e34e25f /nova/compute | |
| parent | 7ad7e9049c651367e8a864863cde5f75fa45b5c9 (diff) | |
Remove instance action logging mechanism
* Remove InstanceActions db model
* Remove relevant db api functions
* Add migration 93 which drops the instance_actions
* Remove server_action_list API extension
* Fixes bug 994846
Change-Id: Ibbd787183034314460f41c84b9ad152655739209
Diffstat (limited to 'nova/compute')
| -rw-r--r-- | nova/compute/api.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/nova/compute/api.py b/nova/compute/api.py index 6c6afa6b3..b54aa1b57 100644 --- a/nova/compute/api.py +++ b/nova/compute/api.py @@ -1516,11 +1516,6 @@ class API(BaseAPI): instance) @wrap_check_policy - def get_actions(self, context, instance): - """Retrieve actions for the given instance.""" - return self.db.instance_get_actions(context, instance['uuid']) - - @wrap_check_policy @check_instance_state(vm_state=[vm_states.ACTIVE, vm_states.SHUTOFF, vm_states.RESCUED], task_state=[None, task_states.RESIZE_VERIFY]) |
