From 20f0c601fe5bd59c2a2f07a8be428ddca995afc5 Mon Sep 17 00:00:00 2001 From: Dan Smith Date: Wed, 12 Dec 2012 13:06:30 -0800 Subject: Move provider_fw_rule_get_all to conductor This patch moves the compute/manager's use of the provider_fw_rule_get_all() method to the conductor. Related to blueprint no-db-compute-manager Change-Id: I963fc65046d29b6eb92b82d559593a64ff775632 --- nova/compute/manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'nova/compute') diff --git a/nova/compute/manager.py b/nova/compute/manager.py index 9e494df56..66e605477 100644 --- a/nova/compute/manager.py +++ b/nova/compute/manager.py @@ -289,7 +289,7 @@ class ComputeVirtAPI(virtapi.VirtAPI): security_group)) def provider_fw_rule_get_all(self, context): - return self._compute.db.provider_fw_rule_get_all(context) + return self._compute.conductor_api.provider_fw_rule_get_all(context) def agent_build_get_by_triple(self, context, hypervisor, os, architecture): return self._compute.db.agent_build_get_by_triple(context, -- cgit