diff options
| author | Mohammed Naser <mnaser@vexxhost.com> | 2011-07-12 19:12:21 -0400 |
|---|---|---|
| committer | Mohammed Naser <mnaser@vexxhost.com> | 2011-07-12 19:12:21 -0400 |
| commit | 952196a533c3577945a2c4245436d09eb75e0eb6 (patch) | |
| tree | 8e3619d1a4a9ba128b95fa0bae0da90ae20829fc | |
| parent | 11611716e30f368df77816b40c4c77de0e0e047f (diff) | |
Made sure the network manager accepts kwargs for FlatManager
| -rw-r--r-- | nova/network/manager.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/network/manager.py b/nova/network/manager.py index 21d151033..383fbd32f 100644 --- a/nova/network/manager.py +++ b/nova/network/manager.py @@ -696,7 +696,7 @@ class FlatManager(NetworkManager): timeout_fixed_ips = False - def _allocate_fixed_ips(self, context, instance_id, networks): + def _allocate_fixed_ips(self, context, instance_id, networks, **kwargs): """Calls allocate_fixed_ip once for each network.""" for network in networks: self.allocate_fixed_ip(context, instance_id, network) |
