diff options
Diffstat (limited to 'nova/compute')
| -rw-r--r-- | nova/compute/manager.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/nova/compute/manager.py b/nova/compute/manager.py index 66e605477..6efc83fb9 100644 --- a/nova/compute/manager.py +++ b/nova/compute/manager.py @@ -292,10 +292,8 @@ class ComputeVirtAPI(virtapi.VirtAPI): 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, - hypervisor, - os, - architecture) + return self._compute.conductor_api.agent_build_get_by_triple( + context, hypervisor, os, architecture) class ComputeManager(manager.SchedulerDependentManager): |
