diff options
author | Thierry Carrez <thierry@openstack.org> | 2011-03-30 21:03:30 +0000 |
---|---|---|
committer | Tarmac <> | 2011-03-30 21:03:30 +0000 |
commit | eda275741f5865a1bf58d0176b36d4d99bfeb015 (patch) | |
tree | 67aa271e2e712635bee086bbe43d36471ede1c3f | |
parent | 11eb77870630dca9399070cd8c3d16f6e2bbce53 (diff) | |
parent | 047af2c506374aa44bb896a7df0cb5813bf3a123 (diff) | |
download | nova-eda275741f5865a1bf58d0176b36d4d99bfeb015.tar.gz nova-eda275741f5865a1bf58d0176b36d4d99bfeb015.tar.xz nova-eda275741f5865a1bf58d0176b36d4d99bfeb015.zip |
Add obviously-missing method that prevents an Hyper-V compute node from even
starting up
-rw-r--r-- | nova/virt/hyperv.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/nova/virt/hyperv.py b/nova/virt/hyperv.py index a1ed5ebbf..13f403a66 100644 --- a/nova/virt/hyperv.py +++ b/nova/virt/hyperv.py @@ -485,3 +485,7 @@ class HyperVConnection(driver.ComputeDriver): def poll_rescued_instances(self, timeout): pass + + def update_available_resource(self, ctxt, host): + """This method is supported only by libvirt.""" + return |