From 99f3822fd3341eecb4bc8d699b9721fdf59aeee8 Mon Sep 17 00:00:00 2001 From: Brian Waldon Date: Fri, 4 May 2012 14:36:52 -0700 Subject: 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 --- nova/compute/api.py | 5 ----- 1 file changed, 5 deletions(-) (limited to 'nova/compute') 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 @@ -1515,11 +1515,6 @@ class API(BaseAPI): return self._call_compute_message("get_diagnostics", context, 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], -- cgit