diff options
| author | Alex Meade <alex.meade@rackspace.com> | 2011-06-06 11:29:05 -0400 |
|---|---|---|
| committer | Alex Meade <alex.meade@rackspace.com> | 2011-06-06 11:29:05 -0400 |
| commit | 0eb6db6f994963d519f9fe07e3dbc41e0c8079c6 (patch) | |
| tree | c8ca8dc1ca76d039f5cddf64f07310c9a8d13e1d | |
| parent | a2f74c2f706bdf45ec36348468b1ba5797fcde87 (diff) | |
Removed Duplicate method
| -rw-r--r-- | nova/virt/xenapi/fake.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/nova/virt/xenapi/fake.py b/nova/virt/xenapi/fake.py index 76988b172..5d3b67417 100644 --- a/nova/virt/xenapi/fake.py +++ b/nova/virt/xenapi/fake.py @@ -340,10 +340,6 @@ class SessionBase(object): return db_ref['xenstore_data'][key] = None - def network_get_all_records_where(self, _1, _2): - # TODO (salvatore-orlando): filter table on _2 - return _db_content['network'] - def VM_add_to_xenstore_data(self, _1, vm_ref, key, value): db_ref = _db_content['VM'][vm_ref] if not 'xenstore_data' in db_ref: @@ -354,7 +350,7 @@ class SessionBase(object): #Always return 12GB available return 12 * 1024 * 1024 * 1024 - def host_call_plugin(*args): + def host_call_plugin(self, *args): return 'herp' def network_get_all_records_where(self, _1, filter): |
