diff options
| author | Jason Kölker <jason@koelker.net> | 2011-05-24 15:09:34 -0500 |
|---|---|---|
| committer | Jason Kölker <jason@koelker.net> | 2011-05-24 15:09:34 -0500 |
| commit | bed6e707247c297771661fd8bac7b939b0d9bbcb (patch) | |
| tree | f9905749b3027e4a9105391618a11accddd4fd8e | |
| parent | 44a1078604911e963ba819a9e5e64e05b812585f (diff) | |
let the fake driver accept the network info
| -rw-r--r-- | nova/virt/fake.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/virt/fake.py b/nova/virt/fake.py index c3d5230df..a1d637b1c 100644 --- a/nova/virt/fake.py +++ b/nova/virt/fake.py @@ -114,7 +114,7 @@ class FakeConnection(driver.ComputeDriver): info_list.append(self._map_to_instance_info(instance)) return info_list - def spawn(self, instance): + def spawn(self, instance, network_info): """ Create a new instance/VM/domain on the virtualization platform. |
